Merge pull request #15 from soxofaan/master

use os.path.join everywhere
This commit is contained in:
2017-08-30 13:31:31 -04:00
committed by GitHub
+1 -1
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