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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py

Issue 2578213005: Use underscores to separate words in filenames in webkitpy. (Closed)
Patch Set: Fix check for attribute in output_capture.py. Created 4 years 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py
index f9631e99ea538879a4b1f9e81ebc9a9ed2af84f7..1aa23fd45beaf19837f866d3b2ebd552fad60a69 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/user.py
@@ -38,7 +38,7 @@ import webbrowser
from webkitpy.common.system.executive import Executive
from webkitpy.common.system.filesystem import FileSystem
-from webkitpy.common.system.platforminfo import PlatformInfo
+from webkitpy.common.system.platform_info import PlatformInfo
_log = logging.getLogger(__name__)
@@ -48,10 +48,10 @@ class User(object):
DEFAULT_NO = 'n'
DEFAULT_YES = 'y'
- def __init__(self, platforminfo=None):
+ def __init__(self, platform_info=None):
# We cannot get the PlatformInfo object from a SystemHost because
# User is part of SystemHost itself.
- self._platforminfo = platforminfo or PlatformInfo(sys, platform, FileSystem(), Executive())
+ self._platform_info = platform_info or PlatformInfo(sys, platform, FileSystem(), Executive())
# FIXME: These are @classmethods because bugzilla.py doesn't have a Tool object (thus no User instance).
@classmethod

Powered by Google App Engine
This is Rietveld 408576698