Merge lp:~trb143/openlp/cleanup into lp:openlp

Proposed by Tim Bentley
Status: Merged
Approved by: Andreas Preikschat
Approved revision: 2261
Merged at revision: 2236
Proposed branch: lp:~trb143/openlp/cleanup
Merge into: lp:openlp
Diff against target: 12 lines (+1/-1)
1 file modified
openlp/core/utils/__init__.py (+1/-1)
To merge this branch: bzr merge lp:~trb143/openlp/cleanup
Reviewer Review Type Date Requested Status
Andreas Preikschat (community) Approve
Review via email: mp+159965@code.launchpad.net

Description of the change

Core will no longer start without this change if you have check for new version enabled.

To post a comment you must log in.
Revision history for this message
Andreas Preikschat (googol-deactivatedaccount) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'openlp/core/utils/__init__.py'
2--- openlp/core/utils/__init__.py 2013-04-20 20:25:06 +0000
3+++ openlp/core/utils/__init__.py 2013-04-21 07:08:25 +0000
4@@ -185,7 +185,7 @@
5 version_string = current_version[u'full']
6 # set to prod in the distribution config file.
7 settings = Settings()
8- settings.beginGroup(u'general')
9+ settings.beginGroup(u'core')
10 last_test = settings.value(u'last version test')
11 this_test = unicode(datetime.now().date())
12 settings.setValue(u'last version test', this_test)