From: Eduardo Habkost Date: Mon, 18 Jun 2018 22:51:29 +0000 (-0300) Subject: device-crash-test: No need for sys.path hack X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8d0ea57ad43b62ddf0838244d3f5b8390928dfc2;p=qemu.git device-crash-test: No need for sys.path hack The device-crash-test script is already inside the 'scripts' directory, there's no need to add the directory manually to sys.path. Signed-off-by: Eduardo Habkost Message-Id: <20180618225131.13113-2-ehabkost@redhat.com> Reviewed-by: Daniel P. Berrangé Reviewed-by: Stefan Hajnoczi Signed-off-by: Eduardo Habkost --- diff --git a/scripts/device-crash-test b/scripts/device-crash-test index 7045594bd4..da0bc5edd0 100755 --- a/scripts/device-crash-test +++ b/scripts/device-crash-test @@ -35,7 +35,6 @@ import random import argparse from itertools import chain -sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'scripts')) from qemu import QEMUMachine logger = logging.getLogger('device-crash-test')