Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Bug 582510: tuxedo-add.py: "product" and "languages" parameters shoul…
Browse files Browse the repository at this point in the history
…d be separated by "&". r=bhearsum
  • Loading branch information
Rail Aliev committed Jul 28, 2010
1 parent 9dc8f03 commit 71df273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release/tuxedo-add.py
Expand Up @@ -157,7 +157,7 @@ def product_add(self, product):
if self.locales:
locales_post_data = ["languages=%s" % l for l in self.locales]
locales_post_data = "&".join(locales_post_data)
post_data += locales_post_data
post_data += "&" + locales_post_data
response = self.tuxedoRequest("product_add/", post_data)
if self.verbose:
print "Server response:"
Expand Down

0 comments on commit 71df273

Please sign in to comment.