summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Pfannschmidt <Ronny.Pfannschmidt@gmx.de>2010-08-18 16:44:36 +0200
committerRonny Pfannschmidt <Ronny.Pfannschmidt@gmx.de>2010-08-18 16:44:36 +0200
commitcb4d12a6c2e5a29628cc86c2673a9b10f7a3eb21 (patch)
tree09c559b4ce67afae9dbdf4c8f238cc518a8fb67d
parent6c4354e6eaba5317d8311ed531b9abf4a0331965 (diff)
downloadsetuptools-scm-cb4d12a6c2e5a29628cc86c2673a9b10f7a3eb21.tar.gz
cleanup imports in the tests
-rw-r--r--test_hgdistver.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/test_hgdistver.py b/test_hgdistver.py
index e3433b2..723cfb9 100644
--- a/test_hgdistver.py
+++ b/test_hgdistver.py
@@ -1,10 +1,10 @@
-from hgdistver import _data_from_archival, \
- _archival_to_version
import os
-import hgdistver
-from hgdistver import hg
import py
-from subprocess import call, Popen, PIPE
+
+import hgdistver
+from hgdistver import hg, \
+ _data_from_archival, \
+ _archival_to_version
def get_version(path, method='get_version', **kw):
call = getattr(hgdistver, method)