← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~meths/openlp/trivialfixes into lp:openlp

 

Jon Tibble has proposed merging lp:~meths/openlp/trivialfixes into lp:openlp.

    Requested reviews:
    OpenLP Core (openlp-core)


Fix unused imports and fix a stray configuration item that was being stored under [image] instead of with the others in [images]
-- 
https://code.launchpad.net/~meths/openlp/trivialfixes/+merge/13882
Your team OpenLP Core is subscribed to branch lp:openlp.
=== modified file 'openlp/plugins/images/lib/imagetab.py'
--- openlp/plugins/images/lib/imagetab.py	2009-10-07 05:09:35 +0000
+++ openlp/plugins/images/lib/imagetab.py	2009-10-23 23:50:21 +0000
@@ -31,7 +31,7 @@
     ImageTab is the Image settings tab in the settings dialog.
     """
     def __init__(self):
-        SettingsTab.__init__(self, translate(u'ImageTab', u'Images'), u'Image')
+        SettingsTab.__init__(self, translate(u'ImageTab', u'Images'), u'Images')
 
     def setupUi(self):
         self.setObjectName(u'ImageTab')

=== modified file 'openlpcnv.pyw'
--- openlpcnv.pyw	2009-10-19 19:36:03 +0000
+++ openlpcnv.pyw	2009-10-23 23:50:21 +0000
@@ -28,8 +28,7 @@
 import time
 import subprocess
 import codecs
-import sys
-from datetime import date
+
 if os.name == u'nt':
     import win32api
     import win32con


Follow ups