Commit 7122f7d6 authored by iannucci@chromium.org's avatar iannucci@chromium.org

Fix bug in git_squash_branch.py.

main takes args starting from 1, not 0.

TBR=agable@chromium.org
BUG=261738

Review URL: https://codereview.chromium.org/212223002

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@259521 0039d316-1c4b-4281-b951-d872f2087c98
parent c050a5b2
......@@ -17,4 +17,4 @@ def main(args):
squash_current_branch(opts.message)
if __name__ == '__main__':
sys.exit(main(sys.argv))
sys.exit(main(sys.argv[1:]))
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