From patchwork Wed Jun 10 20:18:33 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Meneghel Rodrigues X-Patchwork-Id: 29412 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n5AKIf2f005368 for ; Wed, 10 Jun 2009 20:18:41 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752303AbZFJUSg (ORCPT ); Wed, 10 Jun 2009 16:18:36 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752121AbZFJUSg (ORCPT ); Wed, 10 Jun 2009 16:18:36 -0400 Received: from mx2.redhat.com ([66.187.237.31]:33950 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751823AbZFJUSf (ORCPT ); Wed, 10 Jun 2009 16:18:35 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n5AKIavX024817; Wed, 10 Jun 2009 16:18:36 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n5AKIZ7x021633; Wed, 10 Jun 2009 16:18:35 -0400 Received: from [10.16.10.91] (vpn-10-91.bos.redhat.com [10.16.10.91]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n5AKIXF3003290; Wed, 10 Jun 2009 16:18:33 -0400 Subject: [PATCH] Fixing missing import on kvm_vm From: Lucas Meneghel Rodrigues To: Autotest mailing list Cc: KVM mailing list Date: Wed, 10 Jun 2009 17:18:33 -0300 Message-Id: <1244665113.22524.18.camel@localhost.localdomain> Mime-Version: 1.0 X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org While applying the lock file patch for kvm_vm, missed one fcntl import. Fixing the problem. Signed-off-by: Lucas Meneghel Rodrigues Index: trunk/client/tests/kvm/kvm_vm.py =================================================================== --- trunk/client/tests/kvm/kvm_vm.py (revision 3254) +++ trunk/client/tests/kvm/kvm_vm.py (working copy) @@ -1,5 +1,5 @@ #!/usr/bin/python -import time, socket, os, logging +import time, socket, os, logging, fcntl import kvm_utils """