diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2013-05-15 11:25:25 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2013-05-15 11:25:25 +1200 |
commit | 9e94fdc6db83bc2d11b6a9cd1df5222827df3ce8 (patch) | |
tree | 564fff39331e920e626696d30584e246058479eb /mitmdump | |
parent | 52b56e23b265006c29e73e6af37713331af7f5ac (diff) | |
download | mitmproxy-9e94fdc6db83bc2d11b6a9cd1df5222827df3ce8.tar.gz mitmproxy-9e94fdc6db83bc2d11b6a9cd1df5222827df3ce8.tar.bz2 mitmproxy-9e94fdc6db83bc2d11b6a9cd1df5222827df3ce8.zip |
Make ready for pyinstaller.
Diffstat (limited to 'mitmdump')
-rwxr-xr-x | mitmdump | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -16,7 +16,8 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. import sys, signal -from libmproxy import proxy, dump, cmdline, version +# The unneccesary console import here is to work around a bug in pyinstaller +from libmproxy import proxy, dump, cmdline, version, console import argparse if __name__ == '__main__': |