projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d272bdb
)
hgfilesize: skip files that have been removed
author
Nathan Binkert
<nate@binkert.org>
Wed, 11 Jan 2012 06:50:54 +0000
(22:50 -0800)
committer
Nathan Binkert
<nate@binkert.org>
Wed, 11 Jan 2012 06:50:54 +0000
(22:50 -0800)
util/hgfilesize.py
patch
|
blob
|
history
diff --git
a/util/hgfilesize.py
b/util/hgfilesize.py
index 8b9ad67eab0ccdecefe6ad97a2fce1add3d13897..8016582d3c33554152ef03842a7e5ca7e618682c 100644
(file)
--- a/
util/hgfilesize.py
+++ b/
util/hgfilesize.py
@@
-23,6
+23,8
@@
def limit_file_size(ui, repo, node=None, **kwargs):
for rev in xrange(existing_tip, new_tip + 1):
ctx = context.changectx(repo, rev)
for f in ctx.files():
+ if f not in ctx:
+ continue
fctx = ctx.filectx(f)
if fctx.size() > limit:
ui.write(_('file %s of %s is too large: %d > %d\n') % \