From 08c150e06db3cdeb5c0015a3652eb85b61c6b9bb Mon Sep 17 00:00:00 2001 From: "thestig@chromium.org" Date: Thu, 6 May 2010 19:28:01 +0000 Subject: [PATCH] Fix a typo in gcl.py. BUG=none TEST=gcl change foo does not return Unknown command: 'change' after editing the CL. Review URL: http://codereview.chromium.org/1997003 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@46602 0039d316-1c4b-4281-b951-d872f2087c98 --- gcl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcl.py b/gcl.py index ad704a71f5..7237aac27b 100755 --- a/gcl.py +++ b/gcl.py @@ -1222,7 +1222,7 @@ def main(argv=None): if command == "change": Change(change_info, argv[3:]) - if command == "description": + elif command == "description": print change_info.description elif command == "lint": Lint(change_info, argv[3:])