summaryrefslogtreecommitdiff
path: root/morphlib/sourcemanager_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/sourcemanager_tests.py')
-rw-r--r--morphlib/sourcemanager_tests.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/morphlib/sourcemanager_tests.py b/morphlib/sourcemanager_tests.py
index 1fb0b6c0..87d29f7b 100644
--- a/morphlib/sourcemanager_tests.py
+++ b/morphlib/sourcemanager_tests.py
@@ -19,7 +19,7 @@ import tempfile
import shutil
import os
import subprocess
-from urlparse import urlparse
+import urlparse
import morphlib
@@ -44,7 +44,8 @@ class SourceManagerTests(unittest.TestCase):
subprocess.call("./tests/show-dependencies.setup", shell=True, env=env)
self.temprepo = self.temprepodir + '/test-repo/'
bundle_name = morphlib.sourcemanager.quote_url(self.temprepo) + '.bndl'
- subprocess.call("git bundle create %s/%s master" % (self.temprepodir, bundle_name),
+ subprocess.call("git bundle create %s/%s master" %
+ (self.temprepodir, bundle_name),
shell=True, cwd=self.temprepo)
def tearDown(self):
@@ -105,7 +106,7 @@ class SourceManagerTests(unittest.TestCase):
s = morphlib.sourcemanager.SourceManager(app, tempdir)
def wget(url):
- path=urlparse(url).path
+ path=urlparse.urlparse(url).path
shutil.copy(path, s.cache_dir)
s._wget = wget
@@ -124,7 +125,7 @@ class SourceManagerTests(unittest.TestCase):
s = morphlib.sourcemanager.SourceManager(app, tempdir)
def wget(url):
- path=urlparse(url).path
+ path=urlparse.urlparse(url).path
shutil.copy(path, s.cache_dir)
s._wget = wget