diff options
author | Conley Owens <cco3@android.com> | 2013-06-10 14:31:30 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-06-10 14:31:30 +0000 |
commit | 65b162b32fccee038ea331ea47706c4c2ef52692 (patch) | |
tree | 080bc21551d03b899dadd480c8be8833a82237de /manifest_xml.py | |
parent | 53a6c5d93a8ba708208826dab64c55fe97f06d0b (diff) | |
parent | cd51f17c643370e6199216462c1be36f04d57291 (diff) | |
download | git-repo-65b162b32fccee038ea331ea47706c4c2ef52692.tar.gz |
Merge "Fix "'module' object is not callable" error"
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index 817a1c80..b6f75477 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -27,7 +27,7 @@ else: | |||
27 | import imp | 27 | import imp |
28 | import urlparse | 28 | import urlparse |
29 | urllib = imp.new_module('urllib') | 29 | urllib = imp.new_module('urllib') |
30 | urllib.parse = urlparse | 30 | urllib.parse = urlparse.urlparse |
31 | 31 | ||
32 | from git_config import GitConfig | 32 | from git_config import GitConfig |
33 | from git_refs import R_HEADS, HEAD | 33 | from git_refs import R_HEADS, HEAD |