mercurial/dispatch.py
changeset 30500 fc0cfe6c87d7
parent 30485 acd30a959980
child 30519 20a42325fdef
equal deleted inserted replaced
30499:22d05b53b0e8 30500:fc0cfe6c87d7
   665 
   665 
   666     Takes paths in [cwd]/.hg/hgrc into account."
   666     Takes paths in [cwd]/.hg/hgrc into account."
   667     """
   667     """
   668     if wd is None:
   668     if wd is None:
   669         try:
   669         try:
   670             wd = os.getcwd()
   670             wd = pycompat.getcwd()
   671         except OSError as e:
   671         except OSError as e:
   672             raise error.Abort(_("error getting current working directory: %s") %
   672             raise error.Abort(_("error getting current working directory: %s") %
   673                               e.strerror)
   673                               e.strerror)
   674     path = cmdutil.findrepo(wd) or ""
   674     path = cmdutil.findrepo(wd) or ""
   675     if not path:
   675     if not path: