summaryrefslogtreecommitdiffstats
path: root/subcmds
diff options
context:
space:
mode:
authorConley Owens <cco3@android.com>2013-06-10 14:31:30 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-06-10 14:31:30 +0000
commit65b162b32fccee038ea331ea47706c4c2ef52692 (patch)
tree080bc21551d03b899dadd480c8be8833a82237de /subcmds
parent53a6c5d93a8ba708208826dab64c55fe97f06d0b (diff)
parentcd51f17c643370e6199216462c1be36f04d57291 (diff)
downloadgit-repo-65b162b32fccee038ea331ea47706c4c2ef52692.tar.gz
Merge "Fix "'module' object is not callable" error"
Diffstat (limited to 'subcmds')
-rw-r--r--subcmds/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py
index 2d2c8bff..930211c1 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -34,7 +34,7 @@ else:
34 import urlparse 34 import urlparse
35 import xmlrpclib 35 import xmlrpclib
36 urllib = imp.new_module('urllib') 36 urllib = imp.new_module('urllib')
37 urllib.parse = urlparse 37 urllib.parse = urlparse.urlparse
38 xmlrpc = imp.new_module('xmlrpc') 38 xmlrpc = imp.new_module('xmlrpc')
39 xmlrpc.client = xmlrpclib 39 xmlrpc.client = xmlrpclib
40 40