diff options
Diffstat (limited to 'tests/inspector.py')
-rw-r--r-- | tests/inspector.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/inspector.py b/tests/inspector.py index a61051f1..82ffc338 100644 --- a/tests/inspector.py +++ b/tests/inspector.py @@ -116,8 +116,7 @@ def get_args(): def main(): args = get_args() - app.run(port=args.port) - + app.run(host='0.0.0.0', port=args.port) if __name__ == '__main__': main() |