hgext/largefiles/lfcommands.py
changeset 27651 07fc2f2134ba
parent 26944 ef5bab63af85
child 27774 8ceaaf63ca80
--- a/hgext/largefiles/lfcommands.py	Sun Nov 22 17:57:35 2015 -0800
+++ b/hgext/largefiles/lfcommands.py	Sat Jan 02 03:02:57 2016 -0800
@@ -444,9 +444,9 @@
         updated, removed = 0, 0
         for lfile in lfiles:
             abslfile = repo.wjoin(lfile)
-            abslfileorig = cmdutil.origpath(ui, repo, abslfile)
+            abslfileorig = scmutil.origpath(ui, repo, abslfile)
             absstandin = repo.wjoin(lfutil.standin(lfile))
-            absstandinorig = cmdutil.origpath(ui, repo, absstandin)
+            absstandinorig = scmutil.origpath(ui, repo, absstandin)
             if os.path.exists(absstandin):
                 if (os.path.exists(absstandinorig) and
                     os.path.exists(abslfile)):