Skip to content

Commit

Permalink
Fix dir name.
Browse files Browse the repository at this point in the history
  • Loading branch information
jace committed Jun 27, 2017
1 parent 344a1dd commit 1a33495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
versionfile = open(os.path.join(here, "docflow", "_version.py")).read()
versionfile = open(os.path.join(here, 'docflow', '_version.py')).read()

mo = re.search(r"^__version__\s*=\s*['\"]([^'\"]*)['\"]", versionfile, re.M)
if mo:
version = mo.group(1)
else:
raise RuntimeError("Unable to find version string in coaster/_version.py.")
raise RuntimeError("Unable to find version string in docflow/_version.py.")

if sys.hexversion < 0x2070000:
# 2.6 and below require ordereddict
Expand Down

0 comments on commit 1a33495

Please sign in to comment.