summaryrefslogtreecommitdiff
path: root/util/hgfilesize.py
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2012-01-10 22:50:54 -0800
committerNathan Binkert <nate@binkert.org>2012-01-10 22:50:54 -0800
commita1b4cb58f13b30267ee628c275900cd0fa47c0ad (patch)
treee216abaedd6a96726e3649017a8aed5f7f8f5e30 /util/hgfilesize.py
parentd272bdb1bf409ed06d7c2d8bcea47f88de990759 (diff)
downloadgem5-a1b4cb58f13b30267ee628c275900cd0fa47c0ad.tar.xz
hgfilesize: skip files that have been removed
Diffstat (limited to 'util/hgfilesize.py')
-rw-r--r--util/hgfilesize.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/hgfilesize.py b/util/hgfilesize.py
index 8b9ad67ea..8016582d3 100644
--- 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') % \