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

Proposed by Tim Bentley
Status: Merged
Merged at revision: not available
Proposed branch: lp:~trb143/openlp/bugfixes
Merge into: lp:openlp
Diff against target: None lines
To merge this branch: bzr merge lp:~trb143/openlp/bugfixes
Reviewer Review Type Date Requested Status
Raoul Snyman Approve
Review via email: mp+12042@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Tim Bentley (trb143) wrote :

fix error in last merge

Revision history for this message
Raoul Snyman (raoul-snyman) :
review: Approve
lp:~trb143/openlp/bugfixes updated
549. By Tim Bentley

Correction from == to is

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'openlp/plugins/presentations/lib/impresscontroller.py'
2--- openlp/plugins/presentations/lib/impresscontroller.py 2009-09-18 06:07:10 +0000
3+++ openlp/plugins/presentations/lib/impresscontroller.py 2009-09-18 10:26:26 +0000
4@@ -93,7 +93,7 @@
5 else:
6 desktop = self.getUNODesktop()
7 url = uno.systemPathToFileUrl(presentation)
8- if desktop==None:
9+ if desktop is None:
10 return
11 try:
12 properties = []