~kamstrup/zeitgeist/query-expansion

« back to all changes in this revision

Viewing changes to _zeitgeist/engine/__init__.py

The 'never ever use --overwrite again' merge
This branch has become a mess because someone reverted changes and used something
similar to --overwrite without checking which changes were reverted.
With this commit I try to fix the state of this branch, all unittests run sucessfully.
Please check if all changes you made to this branch after 2009-11-14 are there.
Also please never use --overwrite again, and make sure to always run the unittests
before commiting, even before commiting oneline changes, thank you

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
log = logging.getLogger("zeitgeist.engine")
27
27
 
28
28
DB_PATH_DEFAULT = os.path.join(BaseDirectory.save_data_path("zeitgeist"),
29
 
        "database.sqlite")
 
29
        "activity.sqlite")
30
30
DB_PATH = os.environ.get("ZEITGEIST_DATABASE_PATH", DB_PATH_DEFAULT)
31
31
 
32
32
AVAILABLE_ENGINES = ["resonance", "querymancer"]