Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__init__.py « gajim - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f6cf98a22bab98160057962caeae4401508ed18b (plain)
1
2
3
4
5
6
7
8
9
import sys
from pathlib import Path

__version__ = '1.6.0'

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

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