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

Unified Diff: slave/skia_slave_scripts/update_skp_version.py

Issue 394303002: roll common DEPS, and start using recursedeps (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: modify TODO comment Created 6 years, 5 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 | « DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: slave/skia_slave_scripts/update_skp_version.py
diff --git a/slave/skia_slave_scripts/update_skp_version.py b/slave/skia_slave_scripts/update_skp_version.py
index 01ed88a207817ab866939b213db24d2b76137244..15e41789ae4c7f4deb8804572ebbfa6df77f9947 100644
--- a/slave/skia_slave_scripts/update_skp_version.py
+++ b/slave/skia_slave_scripts/update_skp_version.py
@@ -13,6 +13,7 @@ import time
from build_step import BuildStep
from config_private import SKIA_GIT_URL
from py.utils.git_utils import GIT
+from py.utils import git_utils
from py.utils import misc
from py.utils import shell_utils
@@ -56,9 +57,9 @@ class UpdateSkpVersion(BuildStep):
version_file = 'SKP_VERSION'
skp_version = self._args.get('skp_version')
- with misc.GitBranch(branch_name='update_skp_version',
- commit_msg=COMMIT_MSG % skp_version,
- commit_queue=not self._is_try) as branch:
+ with git_utils.GitBranch(branch_name='update_skp_version',
+ commit_msg=COMMIT_MSG % skp_version,
+ commit_queue=not self._is_try) as branch:
# First, upload a version of the CL with just the SKP version changed.
with open(version_file, 'w') as f:
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698