public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [KVM-AUTOTEST PATCH] Fixing small mistake introduced by changeset:3528
@ 2009-08-13  4:25 Lucas Meneghel Rodrigues
  0 siblings, 0 replies; only message in thread
From: Lucas Meneghel Rodrigues @ 2009-08-13  4:25 UTC (permalink / raw)
  To: Autotest mailing list; +Cc: KVM mailing list

When working on changeset:3528, made a mistake on one destination path.
Fixing it.

Signed-off-by: Lucas Meneghel Rodrigues <lmr@redhat.com>

Index: trunk/client/tests/kvm/kvm_preprocessing.py
===================================================================
--- trunk/client/tests/kvm/kvm_preprocessing.py	(revision 3536)
+++ trunk/client/tests/kvm/kvm_preprocessing.py	(working copy)
@@ -292,8 +292,9 @@
                       " files to PNG format...")
         try:
             for f in glob.glob(os.path.join(test.debugdir, "*.ppm")):
+                new_path = f.replace(".ppm", ".png")
                 image = PIL.Image.open(f)
-                image.save(history_scrdump_filename, format = 'PNG')
+                image.save(new_path, format = 'PNG')
         except NameError:
             pass
 



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-08-13  4:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-13  4:25 [KVM-AUTOTEST PATCH] Fixing small mistake introduced by changeset:3528 Lucas Meneghel Rodrigues

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox