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

Signed-off-by: Lucas Meneghel Rodrigues <[email protected]>

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
 


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

Reply via email to