This email list is read-only.  Emails sent to this list will be discarded
----------------------------------
 debian/changelog |    7 +++++--
 gui/gui.py       |    3 ++-
 2 files changed, 7 insertions(+), 3 deletions(-)

New commits:
commit e8c85a9af46960634dded0c480d395f04e8475ce
Author: Mitsutaka Amano <[EMAIL PROTECTED]>
Date:   Mon Aug 18 12:15:19 2008 +0900

    * Fixed bug about can't create /var/lib/moblin-image-creator/kvm.


Diff in this email is a maximum of 400 lines.
diff --git a/debian/changelog b/debian/changelog
index 3079c0f..5c00082 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -108,9 +108,12 @@ moblin-image-creator (0.45) UNRELEASED; urgency=low
   * Minor changes to pdk_utils and mic_cfg
   * Bug fixes in InstallImage.py
   * Adding nand scripts to common-apt
-  * Adding repo_editor.py to makefile 
+  * Adding repo_editor.py to makefile
 
- -- Prajwal Mohan <[EMAIL PROTECTED]>  Sun, 17 Aug 2008 11:26:56 -0700
+  [ Mitsutaka Amano ]
+  * Fixed bug about can't create /var/lib/moblin-image-creator/kvm.
+
+ -- Mitsutaka Amano <[EMAIL PROTECTED]>  Mon, 18 Aug 2008 12:14:13 +0900
 
 moblin-image-creator (0.44) gaston; urgency=low
 
diff --git a/gui/gui.py b/gui/gui.py
index 7ef26d9..2011111 100644
--- a/gui/gui.py
+++ b/gui/gui.py
@@ -963,7 +963,8 @@ class App(object):
         kvmimg_file = os.path.join(kvm_dir, 'mic_vm_share.img')
         if os.path.exists (kvm_dir) == False:
             print _("Creating directory %s ... ") % kvm_dir
-            os.popen("mkdir %s") % kvm_dir
+            cmd = 'mkdir ' + kvm_dir
+            os.popen(cmd)
         if os.path.isfile(kvmimg_file) == False:
             print _("Creating image %s ... ") % kvmimg_file
             progress_tree = gtk.glade.XML(self.gladefile, 'ProgressDialog')
_______________________________________________
Commits mailing list
[email protected]
https://www.moblin.org/mailman/listinfo/commits

Reply via email to