mercurial/hg.py
changeset 3188 705e30c0a230
parent 3069 bc3fe3b5b785
child 3323 39fd6e82ea38
--- a/mercurial/hg.py
+++ b/mercurial/hg.py
@@ -14,7 +14,7 @@ demandload(globals(), "localrepo bundler
 demandload(globals(), "errno lock os shutil util merge@_merge verify@_verify")
 
 def _local(path):
-    return (os.path.isfile(path and util.drop_scheme('file', path)) and
+    return (os.path.isfile(util.drop_scheme('file', path)) and
             bundlerepo or localrepo)
 
 schemes = {
@@ -51,7 +51,7 @@ def islocal(repo):
 
 repo_setup_hooks = []
 
-def repository(ui, path=None, create=False):
+def repository(ui, path='', create=False):
     """return a repository object for the specified path"""
     repo = _lookup(path).instance(ui, path, create)
     for hook in repo_setup_hooks: