Merge pull request #15 from soxofaan/master

use os.path.join everywhere
This commit is contained in:
Kenneth Reitz 2017-08-30 13:31:31 -04:00 committed by GitHub
commit bf2d5e2319

View File

@ -60,7 +60,7 @@ class PublishCommand(Command):
def run(self):
try:
self.status('Removing previous builds…')
rmtree(os.sep.join(('.', 'dist')))
rmtree(os.path.join(here, 'dist'))
except FileNotFoundError:
pass