py3: replace os.sep with pycompat.ossep (part 4 of 4)

This commit is contained in:
Pulkit Goyal 2016-12-17 20:24:46 +05:30
parent 5629f71f5b
commit 908a677054
2 changed files with 5 additions and 3 deletions

View File

@ -12,6 +12,7 @@ import re
from mercurial.i18n import _
from mercurial import (
hook,
pycompat,
util,
)
@ -136,8 +137,8 @@ def createlog(ui, directory=None, root="", rlog=True, cache=None):
except IOError:
raise logerror(_('not a CVS sandbox'))
if prefix and not prefix.endswith(os.sep):
prefix += os.sep
if prefix and not prefix.endswith(pycompat.ossep):
prefix += pycompat.ossep
# Use the Root file in the sandbox, if it exists
try:

View File

@ -53,6 +53,7 @@ from mercurial.i18n import _
from mercurial import (
encoding,
error,
pycompat,
)
# Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
@ -97,7 +98,7 @@ def appendsep(s):
except UnicodeError:
us = s
if us and us[-1] not in ':/\\':
s += os.sep
s += pycompat.ossep
return s