From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lucas Meneghel Rodrigues Subject: [KVM-AUTOTEST PATCH] Fixing small mistake introduced by changeset:3528 Date: Thu, 13 Aug 2009 01:25:51 -0300 Message-ID: <1250137551.2921.58.camel@localhost.localdomain> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Cc: KVM mailing list To: Autotest mailing list Return-path: Received: from mx2.redhat.com ([66.187.237.31]:59884 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750729AbZHMEZy (ORCPT ); Thu, 13 Aug 2009 00:25:54 -0400 Sender: kvm-owner@vger.kernel.org List-ID: When working on changeset:3528, made a mistake on one destination path. Fixing it. Signed-off-by: Lucas Meneghel Rodrigues 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