##// 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 lfdirstate = lfutil.openlfdirstate(ui, self)
355 lfdirstate = lfutil.openlfdirstate(ui, self)
356 for standin in standins:
356 for standin in standins:
357 lfile = lfutil.splitstandin(standin)
357 lfile = lfutil.splitstandin(standin)
358 if lfdirstate[lfile] <> 'r':
358 if lfdirstate[lfile] != 'r':
359 lfutil.updatestandin(self, standin)
359 lfutil.updatestandin(self, standin)
360 lfdirstate.normal(lfile)
360 lfdirstate.normal(lfile)
361 else:
361 else:
General Comments 0
You need to be logged in to leave comments. Login now