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

No need to encode to utf8, because we are writing bytestrings

Changeset 06e9d4d46bce

Parent 2fb5bd645ab8

committed by Lorenzo Bolla

authored by Lorenzo Bolla

Changes to one file · Browse files at 06e9d4d46bce Showing diff from parent 2fb5bd645ab8 Diff from another changeset...

Change 1 of 1 Show Entire File fogbugz.py Stacked
 
124
125
126
127
 
128
129
130
 
124
125
126
 
127
128
129
130
@@ -124,7 +124,7 @@
  '',   ]   buf.write(crlf.join(lines).encode('utf-8')) - buf.write(h.read().encode('utf-8')) + buf.write(h.read())   buf.write(crlf.encode('utf-8'))     buf.write(('--' + BOUNDARY + '--' + crlf).encode('utf-8'))