diff mbox

[KVM-AUTOTEST] Fixing small mistake introduced by changeset:3528

Message ID 1250137551.2921.58.camel@localhost.localdomain (mailing list archive)
State New, archived
Headers show

Commit Message

Lucas Meneghel Rodrigues Aug. 13, 2009, 4:25 a.m. UTC
When working on changeset:3528, made a mistake on one destination path.
Fixing it.

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



--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

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