aboutsummaryrefslogtreecommitdiff
path: root/scripts/qmp/qom-get
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/qom-get
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/qom-get')
-rwxr-xr-xscripts/qmp/qom-get3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/qmp/qom-get b/scripts/qmp/qom-get
index a3f5d7660e..ec5275d53a 100755
--- a/scripts/qmp/qom-get
+++ b/scripts/qmp/qom-get
@@ -12,10 +12,9 @@
##
from __future__ import print_function
-from __future__ import absolute_import
import sys
import os
-from .qmp import QEMUMonitorProtocol
+from qmp import QEMUMonitorProtocol
cmd, args = sys.argv[0], sys.argv[1:]
socket_path = None