aboutsummaryrefslogtreecommitdiff
path: root/scripts/qmp/qemu-ga-client
diff options
context:
space:
mode:
authorEduardo Habkost <ehabkost@redhat.com>2018-06-21 14:54:51 -0300
committerEduardo Habkost <ehabkost@redhat.com>2018-06-22 15:45:42 -0300
commitbf20b675cc5a2568f1105c3577663978c5a13108 (patch)
treed8328490cde9bb5b0b9fa2164d60c9a2d05fa919 /scripts/qmp/qemu-ga-client
parent7ed14cbf3cf083f125c079bd02b3215941853830 (diff)
Partially revert "python: futurize -f libfuturize.fixes.fix_absolute_import"
Since commit 068cf7a44cd4d65c05aa877dbebced295be5ce44, qmp-shell is broken: $ ./scripts/qmp/qmp-shell Traceback (most recent call last): File "./scripts/qmp/qmp-shell", line 70, in <module> from . import qmp ValueError: Attempted relative import in non-package Relative imports don't work on scripts that are executed directly, so revert the change on the scripts inside scripts/qmp. Fixes: 068cf7a44cd4d65c05aa877dbebced295be5ce44 Reported-by: John Snow <jsnow@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <20180621175451.7948-1-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'scripts/qmp/qemu-ga-client')
-rwxr-xr-xscripts/qmp/qemu-ga-client3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/qmp/qemu-ga-client b/scripts/qmp/qemu-ga-client
index 976e69e05f..e8cb7646a0 100755
--- a/scripts/qmp/qemu-ga-client
+++ b/scripts/qmp/qemu-ga-client
@@ -37,11 +37,10 @@
#
from __future__ import print_function
-from __future__ import absolute_import
import base64
import random
-from . import qmp
+import qmp
class QemuGuestAgent(qmp.QEMUMonitorProtocol):