diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-07-10 12:02:19 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-07-10 12:02:19 -0300 |
commit | 07686dfa07b03d5faa609a1554894aadf275a738 (patch) | |
tree | c97c7f997c0e8ebbdcb015150b5f583f6f0313a6 /src/leap/bitmask/gui/__init__.py | |
parent | c0cc3f6f13ef8bc3dadec86bede2b286cea4e966 (diff) | |
parent | 2d7fcd6cbb65945c64fe9fa949a6d176f5dd0d6c (diff) |
Merge remote-tracking branch 'chiiph/feature/package_osx_py2app' into develop
Diffstat (limited to 'src/leap/bitmask/gui/__init__.py')
-rw-r--r-- | src/leap/bitmask/gui/__init__.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/leap/bitmask/gui/__init__.py b/src/leap/bitmask/gui/__init__.py index 4b289442..94bf1fd5 100644 --- a/src/leap/bitmask/gui/__init__.py +++ b/src/leap/bitmask/gui/__init__.py @@ -17,5 +17,7 @@ """ init file for leap.gui """ -app = __import__("app", globals(), locals(), [], 2) -__all__ = [app] +# This was added for coverage and testing, but when doing the osx +# bundle with py2app it fails because of this, so commenting for now +# app = __import__("app", globals(), locals(), [], 2) +# __all__ = [app] |