diff -r 6594ba2a0f51 -r 882756761433 mercurial/commands.py --- a/mercurial/commands.py Fri Aug 12 11:18:41 2005 -0800 +++ b/mercurial/commands.py Fri Aug 12 15:10:09 2005 -0800 @@ -32,8 +32,7 @@ def relpath(repo, args): cwd = repo.getcwd() if cwd: - return [util.pconvert(os.path.normpath(os.path.join(cwd, x))) - for x in args] + return [util.normpath(os.path.join(cwd, x)) for x in args] return args def matchpats(repo, cwd, pats = [], opts = {}, head = ''):