changeset 18182:e6db64abfa87

largefiles: stop using <> operator in favor of != <> has been deprecated for a while, and != is futureproof
author Augie Fackler <raf@durin42.com>
date Tue, 01 Jan 2013 13:04:40 -0600
parents c7d258cd77e5
children e1caaeb5a2ed
files hgext/largefiles/reposetup.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/largefiles/reposetup.py	Tue Jan 01 13:18:33 2013 -0600
+++ b/hgext/largefiles/reposetup.py	Tue Jan 01 13:04:40 2013 -0600
@@ -355,7 +355,7 @@
                 lfdirstate = lfutil.openlfdirstate(ui, self)
                 for standin in standins:
                     lfile = lfutil.splitstandin(standin)
-                    if lfdirstate[lfile] <> 'r':
+                    if lfdirstate[lfile] != 'r':
                         lfutil.updatestandin(self, standin)
                         lfdirstate.normal(lfile)
                     else: