diff options
| author | jmdejong <jmdejong@users.noreply.github.com> | 2018-01-11 22:44:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-11 22:44:20 +0100 |
| commit | e15a7ee87517e47613473f0a3fcb7fc68f112849 (patch) | |
| tree | 1bb12831bf6d65a895004fcc229e9b7954048892 /asciifarm/client/main.py | |
| parent | e0164e21209cec0ec24e9d25eee90711bca78947 (diff) | |
| parent | 7ba1804af2ec34094171127d6eada72a1d1e199f (diff) | |
Merge pull request #1 from rakiru/code-review
Code review
Diffstat (limited to 'asciifarm/client/main.py')
| -rwxr-xr-x | asciifarm/client/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asciifarm/client/main.py b/asciifarm/client/main.py index de77d09..48e89ad 100755 --- a/asciifarm/client/main.py +++ b/asciifarm/client/main.py @@ -57,7 +57,7 @@ def main(argv=None): keybindings = kf.read() address = args.address - if address == None: + if address is None: address = defaultAdresses[args.socket] if args.socket == "abstract": address = '\0' + address |
