summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2012-08-29 15:49:53 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2012-08-29 15:50:45 +0200
commitbd8065d235c0f372c07fbe5e616512d6e4ad0f35 (patch)
tree1c009dea87ea6cd8692027cf1625feeac21ac456
parent01fc2f58ba67869fb45c7de9948520aaa13547a4 (diff)
geniso, boxes: cosmetic changes in log messages
Remove some extra spaces from log messages and source files
-rw-r--r--tools/gen-boxes-unattended-win-iso.py2
-rw-r--r--tools/virtio.py3
2 files changed, 2 insertions, 3 deletions
diff --git a/tools/gen-boxes-unattended-win-iso.py b/tools/gen-boxes-unattended-win-iso.py
index e62252b..fa36ac1 100644
--- a/tools/gen-boxes-unattended-win-iso.py
+++ b/tools/gen-boxes-unattended-win-iso.py
@@ -34,4 +34,4 @@ with iso.IsoMounter(iso_path, mountpoint):
shutil.copy(os.path.join("boxes-unattended-win-drivers", "README"), base_dest)
shutil.copy(os.path.join("boxes-unattended-win-drivers", "txtsetup.oem"), os.path.join(drivers_dest, "winxp", "x86"))
iso.geniso(base_dest, output_iso_name, "Boxes Win Drivers")
-print "done"
+print output_iso_name, "created"
diff --git a/tools/virtio.py b/tools/virtio.py
index b05b370..3641927 100644
--- a/tools/virtio.py
+++ b/tools/virtio.py
@@ -126,7 +126,7 @@ def download_iso(dest):
iso_name = isos.pop()
iso_path = os.path.join(dest, iso_name)
- print "Downloading ", iso_name, "..."
+ print "Downloading", iso_name, "..."
remote_iso = urllib2.urlopen(base_url + iso_name)
fd = os.open(iso_path, os.O_WRONLY|os.O_EXCL|os.O_CREAT)
local_iso = os.fdopen(fd, "w")
@@ -140,4 +140,3 @@ def download_iso(dest):
if 'fd' in locals():
os.remove(iso_name)
raise
-