WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] [PATCH] Remus: fix missing import in device.py

To: xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-devel] [PATCH] Remus: fix missing import in device.py
From: Brendan Cully <brendan@xxxxxxxxx>
Date: Sun, 09 May 2010 23:07:47 -0700
Delivery-date: Sun, 09 May 2010 23:08:34 -0700
Dkim-signature: v=1; a=rsa-sha1; c=relaxed; d=quuxuum.com; h= content-type:mime-version:content-transfer-encoding:subject :message-id:date:to:from; s=dk; bh=dq8ihNn7DHhlIKwr2Dp8wjTWErA=; b= T/U8ZDRE21d7KmtrMsSW0rehg6w5gNnnLtK4uoNDS2AM4UdWRs5seav6MziBbq/y 8rxRq5lCwknJANbiQbi7WnZSSRuu5+G5Ry4lgH71p2oIamPOqRMWGBdcSI0VvWfT fu/Qu3jv9xtvX1R9kRK/0nuTUTWtVNATz67cKe9SBF0=
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mercurial-patchbomb/1.5.2+5-0c8646292ca4
# HG changeset patch
# User Brendan Cully <brendan@xxxxxxxxx>
# Date 1273471524 25200
# Node ID 812d072f6f93b7e3bcf56a1ba9f3ea83d882e581
# Parent  c288e90c1cf76899761da1dbc86a9cd70ef0f904
Remus: fix missing import in device.py

Signed-off-by: Brendan Cully <brendan@xxxxxxxxx>

diff --git a/tools/python/xen/remus/device.py b/tools/python/xen/remus/device.py
--- a/tools/python/xen/remus/device.py
+++ b/tools/python/xen/remus/device.py
@@ -2,7 +2,7 @@
 #
 # Coordinates with devices at suspend, resume, and commit hooks
 
-import os
+import os, re
 
 import netlink, qdisc, util
 

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-devel] [PATCH] Remus: fix missing import in device.py, Brendan Cully <=