Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Unified Diff: tools/checkdeps/results.py

Issue 10823271: Add ability to write include rules specific to subsets of files in a directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to head. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/checkdeps/java_checker.py ('k') | tools/checkdeps/rules.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/checkdeps/results.py
diff --git a/tools/checkdeps/results.py b/tools/checkdeps/results.py
index 5091137e529218fdc4f461129b06276715fbba52..5a50e0ca8c11917e960ab16a2ce4c6731e95d005 100644
--- a/tools/checkdeps/results.py
+++ b/tools/checkdeps/results.py
@@ -82,7 +82,7 @@ class NormalResultsFormatter(ResultsFormatter):
def FormatViolation(violation, verbose=False):
lines = []
if verbose:
- lines.append('For %s' % violation.rules)
+ lines.append(' For %s' % violation.rules)
lines.append(
' Illegal include: "%s"\n Because of %s' %
(violation.include_path, str(violation.violated_rule)))
« no previous file with comments | « tools/checkdeps/java_checker.py ('k') | tools/checkdeps/rules.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698