Drop async future check with python3 version

QubesOS/qubes-issues#4225
This commit is contained in:
fepitre 2018-08-21 15:56:40 +02:00 committed by Frédéric Pierret (fepitre)
parent 2d89ff479b
commit 313a22d4d6

View File

@ -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')