diff options
| author | troido <troido@protonmail.com> | 2019-01-18 12:16:35 +0100 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2019-01-18 12:16:35 +0100 |
| commit | 77105adc468c8f58f94173e7402ac822817beb6f (patch) | |
| tree | f71bb0700189fc608b4a1c69f7e79b8e88fba7cd | |
| parent | 041f338fd69782aaad9109d65d05dcc579690c44 (diff) | |
I want assignment, of hy variable, not identity check
| -rw-r--r-- | asciifarm/client/commandhandler.py | 2 |
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): |
