diff --git a/changes/packaging.py b/changes/packaging.py index 4c888f8..51bf23c 100644 --- a/changes/packaging.py +++ b/changes/packaging.py @@ -3,7 +3,7 @@ from path import path import sh -from changes import config, shell, probe, util, venv, verification +from changes import config, shell, util, venv, verification log = logging.getLogger(__name__) @@ -25,7 +25,7 @@ def install(): log.info('Successfully installed %s sdist', module_name) if verification.run_test_command(): log.info('Successfully ran test command: %s', - config.arguments['--test-command']) + config.arguments['--test-command']) except Exception, e: raise Exception('Error installing %s sdist', module_name, e) diff --git a/changes/util.py b/changes/util.py index 9ebcced..3b80b3a 100644 --- a/changes/util.py +++ b/changes/util.py @@ -39,5 +39,3 @@ def mktmpdir(): yield tmp_dir finally: path(tmp_dir).rmtree(path(tmp_dir)) - -