From: Nathan Binkert Date: Wed, 11 Jan 2012 06:50:54 +0000 (-0800) Subject: hgfilesize: skip files that have been removed X-Git-Tag: stable_2012_06_28~275^2~18 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a1b4cb58f13b30267ee628c275900cd0fa47c0ad;p=gem5.git hgfilesize: skip files that have been removed --- 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') % \