configurationengine/source/plugins/symbian/ConeThemePlugin/themeplugin/theme_container.py
changeset 5 d2c80f5cab53
parent 3 e7e0ae78773e
--- a/configurationengine/source/plugins/symbian/ConeThemePlugin/themeplugin/theme_container.py	Wed Sep 08 12:20:56 2010 +0300
+++ b/configurationengine/source/plugins/symbian/ConeThemePlugin/themeplugin/theme_container.py	Thu Oct 21 16:36:53 2010 +0300
@@ -141,10 +141,10 @@
         name_tdf = os.path.join(name_tdf,name_tdf+".tdf")
         input_tdf = os.path.join(zip_output,name_tdf)
        
-        command_line = "makepackage -input " + input_tdf + " -output " + output_path
+        command_line = "makepackage -input \"%s\" -output \"%s\"" % (input_tdf, output_path)
         
         if len(theme_version) != 0:
-            command_line = command_line + " -ver "+ theme_version
+            command_line = "%s -ver %s" % (command_line, theme_version)
         
         if theme.get_uid() != None:
             command_line = command_line + " -uid " + theme.get_uid()