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

Unified Diff: apply_issue.py

Issue 25853003: Make checkout.GitCheckout usable from apply_issue (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/depot_tools/
Patch Set: Created 7 years, 2 months 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
« no previous file with comments | « no previous file | checkout.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apply_issue.py
===================================================================
--- apply_issue.py (revision 226737)
+++ apply_issue.py (working copy)
@@ -144,7 +144,7 @@
if scm_type == 'svn':
scm_obj = checkout.SvnCheckout(full_dir, None, None, None, None)
elif scm_type == 'git':
- scm_obj = checkout.GitCheckout(full_dir, None, None)
+ scm_obj = checkout.GitCheckout(full_dir, None, None, None, None)
iannucci 2013/10/03 17:50:01 blarg, we should really call these by kwarg. I hav
elif scm_type == None:
scm_obj = checkout.RawCheckout(full_dir, None, None)
else:
« no previous file with comments | « no previous file | checkout.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698