##// END OF EJS Templates
fsmonitor: coerce `clock` variable to byte-string (issue6321)...
Connor Sheehan -
r45372:017cc5ee stable
parent child Browse files
Show More
@@ -667,7 +667,7 b' def overridestatus('
667 667
668 668 class poststatus(object):
669 669 def __init__(self, startclock):
670 self._startclock = startclock
670 self._startclock = pycompat.sysbytes(startclock)
671 671
672 672 def __call__(self, wctx, status):
673 673 clock = wctx.repo()._fsmonitorstate.getlastclock() or self._startclock
General Comments 0
You need to be logged in to leave comments. Login now