Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ofgulban committed Oct 31, 2019
1 parent f7308b2 commit f6d1a26
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,8 +6,8 @@
VERSION = '2.0.0'

# read the contents of README.md
this_directory = os.path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()

if os.path.exists('MANIFEST'):
Expand Down

0 comments on commit f6d1a26

Please sign in to comment.