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

Commit

Permalink
Don't pass unicode to pycurl
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Grosser committed May 16, 2010
1 parent 053c626 commit 0c53809
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
repoman (1.4.6-1) lucid; urgency=low

* Don't pass unicode to pycurl

-- Jeremy Grosser <synack@digg.com> Sun, 16 May 2010 13:09:01 -0500

repoman (1.4.5-1) lucid; urgency=low

* Fix index.html path
Expand Down
2 changes: 1 addition & 1 deletion repoman/buildbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def build_thread(gitpath, ref, buildid, cburl=None, submodules=False):
buildlog(buildid, 'Performing callback: %s' % cburl)
req = Curl()
req.setopt(req.POST, 1)
req.setopt(req.URL, cburl)
req.setopt(req.URL, str(cburl))
req.setopt(req.HTTPPOST, [('package', (req.FORM_FILE, str(tarpath)))])
req.setopt(req.WRITEDATA, file('%s/build.log' % tmpdir, 'a+'))
req.perform()
Expand Down

0 comments on commit 0c53809

Please sign in to comment.