From 313a22d4d640612447101cfc9f6cabe45c1c8928 Mon Sep 17 00:00:00 2001 From: fepitre Date: Tue, 21 Aug 2018 15:56:40 +0200 Subject: [PATCH] Drop async future check with python3 version QubesOS/qubes-issues#4225 --- qubes/tools/qubesd_query.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/qubes/tools/qubesd_query.py b/qubes/tools/qubesd_query.py index d22b586f..5447d727 100644 --- a/qubes/tools/qubesd_query.py +++ b/qubes/tools/qubesd_query.py @@ -7,12 +7,6 @@ import sys QUBESD_SOCK = '/var/run/qubesd.sock' -try: - asyncio.ensure_future -except AttributeError: - # pylint: disable=no-member - asyncio.ensure_future = asyncio.async - parser = argparse.ArgumentParser( description='low-level qubesd interrogation tool')