# HG changeset patch # User Augie Fackler # Date 1357067080 21600 # Node ID e6db64abfa872c4ac2a62dd7450829d5b52b208e # Parent c7d258cd77e5a599bd28f37b0e2d93b24adff7f3 largefiles: stop using <> operator in favor of != <> has been deprecated for a while, and != is futureproof diff -r c7d258cd77e5 -r e6db64abfa87 hgext/largefiles/reposetup.py --- 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: