Merge lp:~smartgpx/bzr-explorer/fix-519757 into lp:bzr-explorer

Proposed by David Roberts
Status: Merged
Merged at revision: not available
Proposed branch: lp:~smartgpx/bzr-explorer/fix-519757
Merge into: lp:bzr-explorer
Diff against target: 10 lines (+1/-1)
1 file modified
__init__.py (+1/-1)
To merge this branch: bzr merge lp:~smartgpx/bzr-explorer/fix-519757
Reviewer Review Type Date Requested Status
Alexander Belchenko Approve
Review via email: mp+18994@code.launchpad.net
To post a comment you must log in.
Revision history for this message
David Roberts (smartgpx) wrote :

Easy fix to crash in Explorer's HELP/ABOUT.

In __init__.py, change from
 version_info = (1, 0, 0, 'rc', 0)
to
 version_info = (1, 0, 0, 'candidate', 0)

(Perhaps needing the syntax in version_info to be different to what is subsequently displayed is an accident waiting to happen again, but fixing that looks like an API design decision.)

Revision history for this message
Alexander Belchenko (bialix) wrote :

I'll merge.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '__init__.py'
2--- __init__.py 2010-02-06 08:21:56 +0000
3+++ __init__.py 2010-02-10 11:04:11 +0000
4@@ -25,7 +25,7 @@
5 for more information.
6 """
7
8-version_info = (1, 0, 0, 'rc', 0)
9+version_info = (1, 0, 0, 'candidate', 0)
10 __version__ = '.'.join(map(str, version_info))
11
12

Subscribers

People subscribed via source and target branches