summaryrefslogtreecommitdiff
path: root/patchtracker/Conf.py
blob: beb2b71abde4577f09b1e4e1672a0c919c5bd67e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
archive_root = '/scratch/debian-archive/debian'
archive_root_url = 'ftp://ftp.se.debian.org/debian'
output_dir = '/scratch/patches'
template_dir  = './templates'
static_dir  = './static'
#root_url = 'http://people.debian.org/~seanius/pts/patches'
root_url = ''
database = 'pt.db'
sqlschema = 'db.sql'

use_apt_pkg = None
""" should we instruct (>= v0.1.12) python-debian to use the faster
    apt_pkg module for parsing?  apt_pkg currently doesn't work on
    some multilined values (see #538376) so if it's available we have
    to explicitly disable it for now.  To do so set this variable
    to False instead of None
"""

try:
  from localconfig import *
except ImportError:
  pass