omegatest: Add space before \ for consistency
[xapian.git] / xapian-maintainer-tools / perftest / app / LogAnalyse / config.py
blobf64a1c4daa67fcbe22c677d20722571755f9738c
1 # Copyright (C) 2008 Lemur Consulting Ltd
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License along
14 # with this program; if not, write to the Free Software Foundation, Inc.,
15 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 """config.py: Configuration store.
18 """
20 import os
22 topdir = os.path.abspath(os.path.dirname(__file__))
23 topdir = os.path.normpath(os.path.dirname(os.path.dirname(topdir)))
25 queue_dir = os.path.join(topdir, "queue")
26 archive_dir = os.path.join(topdir, "archive")
27 db_dir = os.path.join(topdir, "dbdir")
28 log_path = os.path.join(topdir, "log", "importlog")
29 tmp_dir = os.path.join(topdir, "tmp")