Skip to content

Commit

Permalink
fix setup.py _read_reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
rom1504 committed Nov 17, 2022
1 parent e62289b commit 03a0f38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
long_description = f.read()

def _read_reqs(relpath):
fullpath = os.path.join(os.path.dirname(__file__), relpath)
fullpath = path.join(path.dirname(__file__), relpath)
with open(fullpath) as f:
return [s.strip() for s in f.readlines() if (s.strip() and not s.startswith("#"))]

Expand Down

0 comments on commit 03a0f38

Please sign in to comment.