summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/mozproxy/mozproxy/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/mozbase/mozproxy/mozproxy/__main__.py')
-rw-r--r--testing/mozbase/mozproxy/mozproxy/__main__.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/mozbase/mozproxy/mozproxy/__main__.py b/testing/mozbase/mozproxy/mozproxy/__main__.py
new file mode 100644
index 0000000000..f908eae35d
--- /dev/null
+++ b/testing/mozbase/mozproxy/mozproxy/__main__.py
@@ -0,0 +1,10 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+import sys
+
+from mozproxy.driver import main
+
+if __name__ == "__main__":
+ sys.exit(main())