Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
bug 1105485: Fix up submission of release blobs so they can be used f…
Browse files Browse the repository at this point in the history
…or beta builds - fix string formatting. r=rail
  • Loading branch information
bhearsum committed Mar 27, 2015
1 parent 07c4fde commit 0b26569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def poll(self):
if self.appendBuildNumber:
version += 'build%s' % self.release_config.get('buildNumber')
for partialVersion, info in self.release_config.get("partialUpdates").iteritems():
partialVersions.append("%sbuild%s" % partialVersion, info["buildNumber"])
partialVersions.append("%sbuild%s" % (partialVersion, info["buildNumber"]))
if not partialVersions:
partialVersions = self.release_config.get("partialUpdates").keys()
d = get_release_uptake(
Expand Down

0 comments on commit 0b26569

Please sign in to comment.