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: d6f112a97888cb53df0bbf9a87486980a25504b3 (plain)
1
2
3
4
5
6
7
8
9
import sys
from pathlib import Path

__version__ = '1.8.4'

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

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