diff options
author | Tomás Touceda <chiiph@leap.se> | 2014-07-08 15:41:20 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2014-07-10 11:56:03 -0300 |
commit | 37172578152f6f3d6ef169d79062c1d28ab0e98c (patch) | |
tree | 561f26cbea073b3a7b1c11c8c21986208e3b806a /src/leap/bitmask/__init__.py | |
parent | c0cc3f6f13ef8bc3dadec86bede2b286cea4e966 (diff) |
Add packaging for osx with py2app
Diffstat (limited to 'src/leap/bitmask/__init__.py')
-rw-r--r-- | src/leap/bitmask/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/leap/bitmask/__init__.py b/src/leap/bitmask/__init__.py index 0f733f26..03da1e2f 100644 --- a/src/leap/bitmask/__init__.py +++ b/src/leap/bitmask/__init__.py @@ -25,6 +25,12 @@ from pkg_resources import parse_version from leap.bitmask.util import first +# HACK: This is a hack so that py2app copies _scrypt.so to the right +# place, it can't be technically imported, but that doesn't matter +# because the import is never executed +if False: + import _scrypt + def _is_release_version(version): """ |