Fix references to github issue

pull/1/merge
Daniel Richman 2012-11-02 16:48:45 +00:00
rodzic 4955195cbd
commit 9a02072c8e
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -278,7 +278,7 @@ string cURL::post(const string &url, const string &data)
reset();
/* Disable "Expect: 100-continue" - see issue #30 */
/* Disable "Expect: 100-continue" - see issue dl-fldigi#30 */
cURLslist headers;
headers.append("Expect:");
@ -322,7 +322,7 @@ string cURL::put(const string &url, const string &data)
reset();
/* issue #30 */
/* issue dl-fldigi#30 */
cURLslist headers;
headers.append("Expect:");

Wyświetl plik

@ -282,7 +282,7 @@ class MockHTTPHandler(BaseHTTPServer.BaseHTTPRequestHandler):
if support_100 and expect_100:
self.wfile.write(self.protocol_version + " 100 Continue\r\n\r\n")
# See issue #30
# See issue dl-fldigi#30
raise AssertionError("Client used 100-continue!")
length = self.headers.getheader('content-length')