##// END OF EJS Templates
largefiles: fix check-code errors.
Na'Tosha Bard -
r16248:51e6f318 default
parent child Browse files
Show More
@@ -428,8 +428,8 b' def overridecopy(orig, ui, repo, pats, o'
428
428
429 try:
429 try:
430 try:
430 try:
431 # When we call orig below it creates the standins but we don't add them
431 # When we call orig below it creates the standins but we don't add
432 # to the dir state until later so lock during that time.
432 # them to the dir state until later so lock during that time.
433 wlock = repo.wlock()
433 wlock = repo.wlock()
434
434
435 manifest = repo[None].manifest()
435 manifest = repo[None].manifest()
@@ -313,7 +313,8 b' def reposetup(ui, repo):'
313 # removed/renamed)
313 # removed/renamed)
314 for lfile in lfiles:
314 for lfile in lfiles:
315 if lfile in modifiedfiles:
315 if lfile in modifiedfiles:
316 if os.path.exists(self.wjoin(lfutil.standin(lfile))):
316 if os.path.exists(
317 self.wjoin(lfutil.standin(lfile))):
317 # this handles the case where a rebase is being
318 # this handles the case where a rebase is being
318 # performed and the working copy is not updated
319 # performed and the working copy is not updated
319 # yet.
320 # yet.
@@ -202,12 +202,6 b''
202 hgext/keyword.py:0:
202 hgext/keyword.py:0:
203 > ui.note("hg ci -m '%s'\n" % msg)
203 > ui.note("hg ci -m '%s'\n" % msg)
204 warning: unwrapped ui message
204 warning: unwrapped ui message
205 hgext/largefiles/overrides.py:0:
206 > # When we call orig below it creates the standins but we don't add them
207 warning: line over 80 characters
208 hgext/largefiles/reposetup.py:0:
209 > if os.path.exists(self.wjoin(lfutil.standin(lfile))):
210 warning: line over 80 characters
211 hgext/mq.py:0:
205 hgext/mq.py:0:
212 > raise util.Abort(_("cannot push --exact with applied patches"))
206 > raise util.Abort(_("cannot push --exact with applied patches"))
213 warning: line over 80 characters
207 warning: line over 80 characters
General Comments 0
You need to be logged in to leave comments. Login now