Skip to content

Commit

Permalink
fix utils include path in get_includes
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Feb 19, 2012
1 parent 78c72d6 commit 0a7b88f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zmq/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_includes():
from os.path import join, dirname, abspath, pardir
base = dirname(__file__)
parent = abspath(join(base, pardir))
return [ parent ] + [ join(base, subdir) for subdir in ('utils',) ]
return [ parent ] + [ join(parent, base, subdir) for subdir in ('utils',) ]


__all__ = ['get_includes'] + core.__all__
Expand Down

0 comments on commit 0a7b88f

Please sign in to comment.