forked from openlp/openlp
restored correct songusage default values
This commit is contained in:
parent
d552607f57
commit
fc1207fbe0
@ -42,11 +42,17 @@ from openlp.plugins.songusage.lib.db import init_schema, SongUsageItem
|
|||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
YEAR = QtCore.QDate().currentDate().year()
|
||||||
|
if QtCore.QDate().currentDate().month() < 9:
|
||||||
|
YEAR -= 1
|
||||||
|
|
||||||
|
|
||||||
__default_settings__ = {
|
__default_settings__ = {
|
||||||
u'songusage/db type': u'sqlite',
|
u'songusage/db type': u'sqlite',
|
||||||
u'songusage/active': False,
|
u'songusage/active': False,
|
||||||
u'songusage/to date': QtCore.QDate.currentDate(),
|
u'songusage/to date': QtCore.QDate(YEAR, 8, 31),
|
||||||
u'songusage/from date': QtCore.QDate.currentDate().addYears(-1)
|
u'songusage/from date': QtCore.QDate(YEAR - 1, 9, 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user