switch to opkg
[enigma2.git] / lib / python / Components / DreamInfoHandler.py
index 4030567176fe69d6526604d33101c542ced7957a..8e9c29d11c100ce300eb0dfb0b61ee303e8b1a45 100755 (executable)
@@ -123,7 +123,7 @@ class InfoHandler(xml.sax.ContentHandler):
                if self.elements[-1] == "shortdescription":
                        self.attributes["shortdescription"] = str(data)
                if self.elements[-1] == "description":
-                       self.data += data
+                       self.data += data.strip()
                        self.attributes["description"] = str(self.data)
                #print "characters", data
 
@@ -397,7 +397,7 @@ class DreamInfoHandler:
                
        def installIPK(self, directory, name):
                if self.blocking:
-                       os.system("ipkg install " + directory + name)
+                       os.system("opkg install " + directory + name)
                        self.installNext()
                else:
                        self.ipkg = IpkgComponent()