From: Keir Fraser Date: Tue, 23 Jun 2009 16:27:01 +0000 (+0100) Subject: xend: Fix python syntax error X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~13706 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=01dc757ea3a59f5f34d2fabd925c7c9a53378dda;p=xen.git xend: Fix python syntax error Signed-off-by: Christoph Egger --- diff --git a/tools/python/xen/xm/create.py b/tools/python/xen/xm/create.py index 93e019038e..9a0ae3e306 100644 --- a/tools/python/xen/xm/create.py +++ b/tools/python/xen/xm/create.py @@ -660,7 +660,7 @@ def configure_image(vals): # This allows guest migration to a Dom0 having different # xen install pathes. config_image.append([ 'kernel', vals.kernel ]) - elif os.path.exists(os.path.abspath(vals.kernel)) + elif os.path.exists(os.path.abspath(vals.kernel)): # Keep old behaviour, if path is valid. config_image.append([ 'kernel', os.path.abspath(vals.kernel) ]) else: