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

Unified Diff: dart/tools/bots/bot_utils.py

Issue 23600062: Bugfix in tools/bots/bot_utils.py: don't get the dirname in case of the gsutil shell script on buil… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/bots/bot_utils.py
diff --git a/dart/tools/bots/bot_utils.py b/dart/tools/bots/bot_utils.py
index 5885378b5c5659e71cfd8d4cff43450084b1820b..fc6beefde5b94bd272d5e0beccc3516db6f00b5c 100644
--- a/dart/tools/bots/bot_utils.py
+++ b/dart/tools/bots/bot_utils.py
@@ -149,7 +149,7 @@ class GSUtil(object):
def _layzCalculateGSUtilPath(self):
if not GSUtil.GSUTIL_PATH:
- buildbot_gsutil = os.path.dirname(utils.GetBuildbotGSUtilPath())
+ buildbot_gsutil = utils.GetBuildbotGSUtilPath()
if os.path.isfile(buildbot_gsutil):
GSUtil.GSUTIL_IS_SHELL_SCRIPT = True
GSUtil.GSUTIL_PATH = buildbot_gsutil
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698