fix the fix *grml*
authorMoritz Venn <ritzmo@users.schwerkraft.elitedvb.net>
Thu, 1 Oct 2009 20:27:09 +0000 (20:27 +0000)
committerMoritz Venn <ritzmo@users.schwerkraft.elitedvb.net>
Thu, 1 Oct 2009 20:27:09 +0000 (20:27 +0000)
autotimer/src/AutoTimerComponent.py
autotimer/src/AutoTimerConfiguration.py
autotimer/src/AutoTimerEditor.py
autotimer/src/AutoTimerImporter.py

index 1c0d551..e6b0b1f 100644 (file)
@@ -401,7 +401,7 @@ class AutoTimerComponent(object):
                                                        value = s.toString()
                                                        pos = value.rfind(':')
                                                        if pos != -1:
-                                                               if value[pos-1] == ':'
+                                                               if value[pos-1] == ':':
                                                                        pos -= 1
                                                                value = value[:pos+1]
 
@@ -433,7 +433,7 @@ class AutoTimerComponent(object):
                                                                value = s.toString()
                                                                pos = value.rfind(':')
                                                                if pos != -1:
-                                                                       if value[pos-1] == ':'
+                                                                       if value[pos-1] == ':':
                                                                                pos -= 1
                                                                        value = value[:pos+1]
 
index 1cfd4f9..3000376 100644 (file)
@@ -139,7 +139,7 @@ def parseEntry(element, baseTimer, defaults = False):
                                        # strip all after last :
                                        pos = value.rfind(':')
                                        if pos != -1:
-                                               if value[pos-1] == ':'
+                                               if value[pos-1] == ':':
                                                        pos -= 1
                                                value = value[:pos+1]
 
@@ -322,7 +322,7 @@ def parseConfigOld(configuration, list, uniqueTimerId = 0):
                                                # strip all after last :
                                                pos = value.rfind(':')
                                                if pos != -1:
-                                                       if value[pos-1] == ':'
+                                                       if value[pos-1] == ':':
                                                                pos -= 1
                                                        value = value[:pos+1]
 
index 27294cc..e78a7bd 100644 (file)
@@ -1069,7 +1069,7 @@ class AutoTimerServiceEditor(Screen, ConfigListScreen):
                                # strip all after last : when adding a (non alternative) channel
                                pos = sname.rfind(':')
                                if pos != -1:
-                                       if sname[pos-1] == ':'
+                                       if sname[pos-1] == ':':
                                                pos -= 1
                                        sname = sname[:pos+1]
 
@@ -1150,7 +1150,7 @@ def addAutotimerFromEvent(session, evt = None, service = None):
                        # strip all after last :
                        pos = service.rfind(':')
                        if pos != -1:
-                               if service[pos-1] == ':'
+                               if service[pos-1] == ':':
                                        pos -= 1
                                service = service[:pos+1]
 
@@ -1205,7 +1205,7 @@ def addAutotimerFromService(session, service = None):
                # strip all after last :
                pos = sref.rfind(':')
                if pos != -1:
-                       if sref[pos-1] == ':'
+                       if sref[pos-1] == ':':
                                pos -= 1
                        sref = sref[:pos+1]
 
index ee149e1..5660c92 100644 (file)
@@ -275,7 +275,7 @@ class AutoTimerImporter(Screen):
                                        # strip all after last :
                                        pos = value.rfind(':')
                                        if pos != -1:
-                                               if value[pos-1] == ':'
+                                               if value[pos-1] == ':':
                                                        pos -= 1
                                                value = value[:pos+1]