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

Unified Diff: tools-webrtc/check_package_boundaries.py

Issue 2736233003: PyLint fixes for tools-webrtc and webrtc/tools (Closed)
Patch Set: Fix alignment Created 3 years, 9 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-webrtc/autoroller/unittests/roll_deps_test.py ('k') | tools-webrtc/check_package_boundaries_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools-webrtc/check_package_boundaries.py
diff --git a/tools-webrtc/check_package_boundaries.py b/tools-webrtc/check_package_boundaries.py
index eb791fffb27e3ea5252c345fe705e19b00c70628..ec1521b56a9825aa3ff740e80cf15e2672999f06 100644
--- a/tools-webrtc/check_package_boundaries.py
+++ b/tools-webrtc/check_package_boundaries.py
@@ -39,7 +39,7 @@ class Logger(object):
self.log_level = DISPLAY_LEVEL
self.messages_left = messages_left
- def log(self, build_file_path, line_number, target_name, source_file,
+ def Log(self, build_file_path, line_number, target_name, source_file,
subpackage):
if self.messages_left is not None:
if not self.messages_left:
@@ -91,7 +91,7 @@ def _CheckBuildFile(build_file_path, packages, logger):
line_number = subpackages_match.group('line_number')
if subpackage:
found_violations = True
- logger.log(build_file_path, line_number, target_name, source_file,
+ logger.Log(build_file_path, line_number, target_name, source_file,
subpackage)
return found_violations
« no previous file with comments | « tools-webrtc/autoroller/unittests/roll_deps_test.py ('k') | tools-webrtc/check_package_boundaries_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698