From 77105adc468c8f58f94173e7402ac822817beb6f Mon Sep 17 00:00:00 2001 From: troido Date: Fri, 18 Jan 2019 12:16:35 +0100 Subject: I want assignment, of hy variable, not identity check --- asciifarm/client/commandhandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'asciifarm/client') diff --git a/asciifarm/client/commandhandler.py b/asciifarm/client/commandhandler.py index 983e211..db9f625 100644 --- a/asciifarm/client/commandhandler.py +++ b/asciifarm/client/commandhandler.py @@ -4,7 +4,7 @@ import json try: import hy except ImportError as e: - hy is None + hy = None hyErr = e class InvalidCommandException(Exception): -- cgit