Skip to content

Commit

Permalink
fix os path
Browse files Browse the repository at this point in the history
  • Loading branch information
d2iq-shadowbq committed Jan 21, 2020
1 parent ccadb7d commit 96823f9
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 @@ -12,8 +12,8 @@
except ImportError:
CleanCommand = None

this_directory = 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()

cmd_classes = {}
Expand Down

0 comments on commit 96823f9

Please sign in to comment.