Merge lp:~lucian.grijincu/lernid/lernid-lucian into lp:lernid

Proposed by Lucian Adrian Grijincu
Status: Merged
Merged at revision: not available
Proposed branch: lp:~lucian.grijincu/lernid/lernid-lucian
Merge into: lp:lernid
Diff against target: 34 lines (+3/-3)
2 files modified
bin/lernid (+2/-2)
data/ui/AboutLernidDialog.ui (+1/-1)
To merge this branch: bzr merge lp:~lucian.grijincu/lernid/lernid-lucian
Reviewer Review Type Date Requested Status
Jono Bacon Approve
Review via email: mp+15926@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Lucian Adrian Grijincu (lucian.grijincu) wrote :
Revision history for this message
Jono Bacon (jonobacon) wrote :

Awesome work, thanks!

review: Approve
47. By Jono Bacon

Merging in p:~lucian.grijincu/lernid/lernid-lucian

 - Fixes LP #491933
 - Fixed LP #493319

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'bin/lernid'
2--- bin/lernid 2009-12-06 20:25:49 +0000
3+++ bin/lernid 2009-12-10 11:00:29 +0000
4@@ -168,7 +168,7 @@
5 tempevent = {}
6
7 # reverse the list to get the events in chronological order
8- self.schedule.reverse()
9+ self.schedule.sort(lambda x,y: cmp(x['start_local'], y['start_local']))
10
11 def populate_schedule_view(self):
12 """Populate the schedule Treeview with events"""
13@@ -403,7 +403,7 @@
14 #support for command line options
15 import logging, optparse
16 gettext.install('lernid', unicode=True)
17- parser = optparse.OptionParser(version="%prog %ver")
18+ parser = optparse.OptionParser(version="%prog 0.3")
19 parser.add_option("-v", "--verbose", action="store_true", dest="verbose", help=_("Show debug messages"))
20 (options, args) = parser.parse_args()
21
22
23=== modified file 'data/ui/AboutLernidDialog.ui'
24--- data/ui/AboutLernidDialog.ui 2009-12-10 02:56:04 +0000
25+++ data/ui/AboutLernidDialog.ui 2009-12-10 11:00:29 +0000
26@@ -9,7 +9,7 @@
27 <property name="type_hint">normal</property>
28 <property name="has_separator">False</property>
29 <property name="program_name">Lernid</property>
30- <property name="version">0.2</property>
31+ <property name="version">0.3</property>
32 <property name="comments" translatable="yes">Connect to a world of online tutorials quickly and easily.</property>
33 <property name="website">http://www.launchpad.net/lernid/</property>
34 <property name="license" translatable="yes">Copyright (C) 2009 &lt;Jono Bacon&gt; &lt;jono@ubuntu.com&gt;

Subscribers

People subscribed via source and target branches