FogBugz » FogBugzPy A Python wrapper for the FogBugz API Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master

v might be an integer or other type that needs to be rendered as a string.

Changeset 8633cadf925b

Parent 86f541c88c92

by Jason R. Coombs

Changes to one file · Browse files at 8633cadf925b Showing diff from parent 86f541c88c92 Diff from another changeset...

Change 1 of 1 Show Entire File fogbugz.py Stacked
 
102
103
104
105
 
106
107
108
 
102
103
104
 
105
106
107
108
@@ -102,7 +102,7 @@
  '--' + BOUNDARY,   'Content-disposition: form-data; name="%s"' % k,   '', - v, + str(v),   '',   ]   buf.write(crlf.join(lines).encode('utf-8'))