/usr/lib/synopsis/Synopsis/config.py is in synopsis 0.12-8.
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 11 12 13 14 15 16 17 18 | #
# Copyright (C) 2007 Stefan Seefeld
# All rights reserved.
# Licensed to the public under the terms of the GNU LGPL (>= 2),
# see the file COPYING for details.
#
"""This module contains configuration data that are specific to a
particular release / installation such as version, data
paths, etc."""
import os, os.path
# The following variables are adjusted during installation.
version = '0.12'
prefix = '/usr'
datadir = '/usr/share/synopsis-0.12'
revision = '2029'
|