summaryrefslogtreecommitdiff
path: root/morphlib/sourcemanager.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/sourcemanager.py')
-rw-r--r--morphlib/sourcemanager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/sourcemanager.py b/morphlib/sourcemanager.py
index d30f08ed..c25f7331 100644
--- a/morphlib/sourcemanager.py
+++ b/morphlib/sourcemanager.py
@@ -20,7 +20,6 @@ import urllib2
import string
import morphlib
-from morphlib.git import Treeish
gitscheme=["git",]
@@ -149,7 +148,8 @@ class SourceManager(object):
if success:
# create the treeish; cache it to avoid loading it twice
- treeish = Treeish(gitcache, repo, ref, self.msg)
+ treeish = morphlib.git.Treeish(gitcache, repo, ref,
+ self.msg)
self.cached_treeishes[(repo, ref)] = treeish
else:
raise SourceNotFound(repo,ref)