Commit 8b60d0d4 authored by laforge@chromium.org's avatar laforge@chromium.org

Revert 22561 - Minor change to gcl to automatically put changed files in the...

Revert 22561 - Minor change to gcl to automatically put changed files in the changelist (like we do with P4)
R=nsylvain
Review URL: http://codereview.chromium.org/164028

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@22608 0039d316-1c4b-4281-b951-d872f2087c98
parent 6607d4d9
......@@ -990,10 +990,9 @@ def Change(change_info, override_description):
separator2 = "\n\n---Paths modified but not in any changelist:\n\n"
text = (description + separator1 + '\n' +
'\n'.join([f[0] + f[1] for f in change_info.GetFiles()]) +
'\n'.join([f[0] + f[1] for f in affected_files]) + '\n' +
separator2 +
'\n'.join([f[0] + f[1] for f in unaffected_files]) + '\n'
)
'\n'.join([f[0] + f[1] for f in affected_files]) + '\n' +
'\n'.join([f[0] + f[1] for f in unaffected_files]) + '\n')
handle, filename = tempfile.mkstemp(text=True)
os.write(handle, text)
......
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