/usr/share/comix/src/constants.py is in comix 4.0.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | """constants.py - Miscellaneous constants."""
import os
import portability
VERSION = '4.0.4'
HOME_DIR = portability.get_home_directory()
CONFIG_DIR = portability.get_config_directory()
DATA_DIR = portability.get_data_directory()
|