diff options
author | Louis Vézina <[email protected]> | 2017-10-20 08:59:21 -0400 |
---|---|---|
committer | Louis Vézina <[email protected]> | 2017-10-20 08:59:21 -0400 |
commit | ded69fe6e720f0771c912c69177b11b86d40da3f (patch) | |
tree | 4f17e9dabc6cc2dbb2ae8703908982556ebcfbc6 /.gitignore | |
parent | 5c52b5111e7bd330b33a4da9bd7ebed52a32020c (diff) | |
download | bazarr-ded69fe6e720f0771c912c69177b11b86d40da3f.tar.gz bazarr-ded69fe6e720f0771c912c69177b11b86d40da3f.zip |
Use absolute path
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 10dfa1997..823efbbfd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,9 @@ *.pyc -data/db/bazarr.db +os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db') cachefile.dbm *.log *.log.* *.db *.pyc *.pyc -data/db/bazarr.db +os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db') |