Commit a005ccde authored by maruel@chromium.org's avatar maruel@chromium.org

Fix 'gcl settings' output.

TEST=none
BUG=none

Review URL: http://codereview.chromium.org/126032

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@18265 0039d316-1c4b-4281-b951-d872f2087c98
parent a6f27cd0
...@@ -1116,7 +1116,9 @@ def main(argv=None): ...@@ -1116,7 +1116,9 @@ def main(argv=None):
return 0 return 0
if command == "settings": if command == "settings":
ignore = GetCodeReviewSetting("UNKNOWN"); ignore = GetCodeReviewSetting("UNKNOWN");
print CODEREVIEW_SETTINGS del CODEREVIEW_SETTINGS['__just_initialized']
print '\n'.join(("%s: %s" % (str(k), str(v))
for (k,v) in CODEREVIEW_SETTINGS.iteritems()))
return 0 return 0
if len(argv) == 2: if len(argv) == 2:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment