Merge "Switched documentation to point to storyboard."
diff --git a/jeepyb/cmd/manage_projects.py b/jeepyb/cmd/manage_projects.py
index 1dc6578..ff5b4c7 100644
--- a/jeepyb/cmd/manage_projects.py
+++ b/jeepyb/cmd/manage_projects.py
@@ -568,7 +568,7 @@
'github-config',
'/etc/github/github-projects.secure.config')
- gerrit = gerritlib.gerrit.Gerrit('localhost',
+ gerrit = gerritlib.gerrit.Gerrit(GERRIT_HOST,
GERRIT_USER,
GERRIT_PORT,
GERRIT_KEY)
@@ -596,7 +596,10 @@
continue
project_git = "%s.git" % project
- remote_url = "ssh://localhost:%s/%s" % (GERRIT_PORT, project)
+ remote_url = "ssh://%s:%s/%s" % (
+ GERRIT_HOST,
+ GERRIT_PORT,
+ project)
git_opts = dict(upstream=upstream,
repo_path=repo_path,
remote_url=remote_url)
diff --git a/jeepyb/cmd/update_bug.py b/jeepyb/cmd/update_bug.py
index d0c8cd0..f886ac2 100644
--- a/jeepyb/cmd/update_bug.py
+++ b/jeepyb/cmd/update_bug.py
@@ -221,7 +221,7 @@
if (bugtask.status != u'Fix Released' and
task.needs_change('set_fix_committed')):
set_fix_committed(bugtask)
- elif args.branch == 'milestone-proposed':
+ elif args.branch.startswith('proposed/'):
release_fixcommitted(bugtask)
elif args.branch.startswith('stable/'):
series = args.branch[7:]