aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libmproxy/proxy.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/libmproxy/proxy.py b/libmproxy/proxy.py
index e7a10d60..9f87f80e 100644
--- a/libmproxy/proxy.py
+++ b/libmproxy/proxy.py
@@ -193,14 +193,14 @@ class FileLike:
pass
def read(self, length):
- result = ''
- while len(result) < length:
- data = self.o.read(length)
- if not data:
- break
- result += data
- return result
-
+ result = ''
+ while len(result) < length:
+ data = self.o.read(length)
+ if not data:
+ break
+ result += data
+ return result
+
def readline(self):
result = ''
while True: