Skip to content

Commit 063877c

Browse files
committed
Fix bug
1 parent e050834 commit 063877c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ def get_version():
1717
init = open(os.path.join(HERE, 'cloudtracker', '__init__.py')).read()
1818
return VERSION_RE.search(init).group(1)
1919

20+
2021
def get_description():
21-
with open(path.join(os.path.abspath(HERE), 'README.md'), encoding='utf-8') as f:
22-
return f.read()
22+
return open(os.path.join(os.path.abspath(HERE), 'README.md'), encoding='utf-8').read()
2323

2424

2525
setup(

0 commit comments

Comments
 (0)