From 483a897db4cdb9a28962a803af465d8e05ff69d7 Mon Sep 17 00:00:00 2001 From: Chris Ballance Date: Tue, 28 Mar 2017 23:09:42 +0100 Subject: [PATCH] monkey_patches: fix 3af29f7 --- artiq/monkey_patches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/monkey_patches.py b/artiq/monkey_patches.py index c937c73fb..715453931 100644 --- a/artiq/monkey_patches.py +++ b/artiq/monkey_patches.py @@ -4,7 +4,7 @@ import sys __all__ = [] -if sys.version_info[:2] >= (3, 5, 2): +if sys.version_info[:3] >= (3, 5, 2): import asyncio # See https://github.com/m-labs/artiq/issues/506