← Back to team overview

openlp-core team mailing list archive

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

 

Tim Bentley has proposed merging lp:~trb143/openlp/bugfixes into lp:openlp.

Requested reviews:
    openlp.org Core (openlp-core)

fix error in last merge
-- 
https://code.launchpad.net/~trb143/openlp/bugfixes/+merge/12042
Your team openlp.org Core is subscribed to branch lp:openlp.
=== modified file 'openlp/plugins/presentations/lib/impresscontroller.py'
--- openlp/plugins/presentations/lib/impresscontroller.py	2009-09-18 06:07:10 +0000
+++ openlp/plugins/presentations/lib/impresscontroller.py	2009-09-18 10:26:26 +0000
@@ -93,7 +93,7 @@
         else:
             desktop = self.getUNODesktop()
             url = uno.systemPathToFileUrl(presentation)
-        if desktop==None:
+        if desktop is None:
             return
         try:
             properties = []


Follow ups