Skip to content
Snippets Groups Projects
Forked from gajim / gajim
1884 commits behind the upstream repository.
__init__.py 214 B
import sys
from pathlib import Path

__version__ = '1.5.2'

IS_FLATPAK = Path('/app/share/run-as-flatpak').exists()

portable_path = Path(sys.executable).parent / 'is_portable'
IS_PORTABLE = portable_path.exists()