Skip to content

Commit

Permalink
fixed imports for new about style
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Sep 5, 2017
1 parent 0ba8693 commit 6ed2312
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath(os.path.pardir))

import statsd
from statsd import __about__ as statsd

# -- General configuration -----------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# To prevent importing about and thereby breaking the coverage info we use this
# exec hack
about = {}
with open('stl/__about__.py') as fp:
with open('statsd/__about__.py') as fp:
exec(fp.read(), about)

if os.path.isfile('README.rst'):
Expand Down

0 comments on commit 6ed2312

Please sign in to comment.