##// END OF EJS Templates
largefiles: stop using <> operator in favor of !=...
Augie Fackler -
r18182:e6db64ab default
parent child Browse files
Show More
@@ -355,7 +355,7 b' def reposetup(ui, repo):'
355 355 lfdirstate = lfutil.openlfdirstate(ui, self)
356 356 for standin in standins:
357 357 lfile = lfutil.splitstandin(standin)
358 if lfdirstate[lfile] <> 'r':
358 if lfdirstate[lfile] != 'r':
359 359 lfutil.updatestandin(self, standin)
360 360 lfdirstate.normal(lfile)
361 361 else:
General Comments 0
You need to be logged in to leave comments. Login now