mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 01:09:22 +01:00
conf: fix getDatabaseName calling the wrong variable name
This commit is contained in:
parent
9a84dbde71
commit
21b8b51cba
2
conf.py
2
conf.py
@ -144,6 +144,6 @@ def getDatabaseName(dbname):
|
|||||||
if this is called from an instance running as './pylink testing.yml', it
|
if this is called from an instance running as './pylink testing.yml', it
|
||||||
would return '<dbname>-testing.db'."""
|
would return '<dbname>-testing.db'."""
|
||||||
if confname != 'pylink':
|
if confname != 'pylink':
|
||||||
dbname += '-%s' % conf.confname
|
dbname += '-%s' % confname
|
||||||
dbname += '.db'
|
dbname += '.db'
|
||||||
return dbname
|
return dbname
|
||||||
|
Loading…
Reference in New Issue
Block a user