hgext/convert/subversion.py
changeset 8219 21cf74ff2deb
parent 8214 a2af1d92b913
child 8221 f35b933044cc
--- a/hgext/convert/subversion.py	Mon Apr 06 15:09:54 2009 +0200
+++ b/hgext/convert/subversion.py	Mon Apr 27 09:12:07 2009 +0200
@@ -148,8 +148,8 @@
 # this by requesting a version-controlled URL we know can't exist and looking
 # for the svn-specific "not found" XML.
 def httpcheck(path, proto):
-   return ('<m:human-readable errcode="160013">' in
-           urllib.urlopen('%s://%s/!svn/ver/0/.svn' % (proto, path)).read())
+    return ('<m:human-readable errcode="160013">' in
+            urllib.urlopen('%s://%s/!svn/ver/0/.svn' % (proto, path)).read())
 
 protomap = {'http': httpcheck,
             'https': httpcheck,