Message ID | 1250137551.2921.58.camel@localhost.localdomain (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
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
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