diff options
author | Matt Evans <matt.evans@arm.com> | 2012-06-29 11:19:06 -0400 |
---|---|---|
committer | Matt Evans <matt.evans@arm.com> | 2012-06-29 11:19:06 -0400 |
commit | 234fd1c4d8822169b3cfc7beaeff79ad8e471f5c (patch) | |
tree | f6959f78584bc61af73293061bbb6660b2a808a8 | |
parent | 579047c76d9c9baa0cb80f7e7603a2e9d3c50376 (diff) | |
download | gem5-234fd1c4d8822169b3cfc7beaeff79ad8e471f5c.tar.xz |
Style: Make style.py's invalid warning print which file caused the infraction.
-rw-r--r-- | util/style.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/style.py b/util/style.py index 498bdf530..2c102b14d 100644 --- a/util/style.py +++ b/util/style.py @@ -244,7 +244,7 @@ class SortedIncludes(Verifier): modified = mod & regions if modified: - self.write("invalid sorting of includes\n") + self.write("invalid sorting of includes in %s\n" % (filename)) if self.ui.verbose: for start, end in modified.regions: self.write("bad region [%d, %d)\n" % (start, end)) |