Undo stupid change to while loop

This commit is contained in:
Ori Livneh
2011-12-22 17:51:22 -05:00
parent 2c0ff95d4d
commit a7223f86a9
+1 -1
View File
@@ -599,7 +599,7 @@ class Response(object):
def generate():
chunk = []
while True:
while 1:
c = self.raw.read(1)
if not c:
break