diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-01-02 15:29:51 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-01-02 15:29:51 +1300 |
commit | 80339aef934e6d187b3cfff2d2c38fb52fcae7c9 (patch) | |
tree | e83c3e9e3c0d6f03981983e6baaa65fcd3c5c9e2 /libmproxy/web/__init__.py | |
parent | b14b4ace25b456f54677fe8efc910d8db0f36506 (diff) | |
download | mitmproxy-80339aef934e6d187b3cfff2d2c38fb52fcae7c9.tar.gz mitmproxy-80339aef934e6d187b3cfff2d2c38fb52fcae7c9.tar.bz2 mitmproxy-80339aef934e6d187b3cfff2d2c38fb52fcae7c9.zip |
Unit test framework for web client-side code
- Also make formatSize nicer and test it.
Now there's no excuse! ;)
Diffstat (limited to 'libmproxy/web/__init__.py')
-rw-r--r-- | libmproxy/web/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/web/__init__.py b/libmproxy/web/__init__.py index 4d4d6c7c..173ddf9f 100644 --- a/libmproxy/web/__init__.py +++ b/libmproxy/web/__init__.py @@ -127,7 +127,7 @@ class WebMaster(flow.FlowMaster): self.app = app.Application(self, self.options.wdebug) if options.rfile: try: - print(self.load_flows_file(options.rfile)) + self.load_flows_file(options.rfile) except flow.FlowReadError, v: self.add_event( "Could not read flow file: %s"%v, |