summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2019-01-18 12:16:35 +0100
committertroido <troido@protonmail.com>2019-01-18 12:16:35 +0100
commit77105adc468c8f58f94173e7402ac822817beb6f (patch)
treef71bb0700189fc608b4a1c69f7e79b8e88fba7cd
parent041f338fd69782aaad9109d65d05dcc579690c44 (diff)
I want assignment, of hy variable, not identity check
-rw-r--r--asciifarm/client/commandhandler.py2
1 files changed, 1 insertions, 1 deletions
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):