From 74a6405ac776bae2cf60aa8052ec0a9fe4fe11ae Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Sun, 6 Jul 2014 02:50:50 +0200 Subject: [PATCH] Linting --- changes/packaging.py | 4 ++-- changes/util.py | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) 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)) - -