about summary refs log tree commit diff
path: root/tooter.py
diff options
context:
space:
mode:
authorStef Dunlap <stef@kindrobot.ca>2022-06-14 16:46:52 -0400
committerStef Dunlap <stef@kindrobot.ca>2022-06-14 16:46:52 -0400
commit2e242aea1e06571ec415530b478d240b8f4e316d (patch)
treef3c688233d05445d74dc25fe80b287727c64aa0c /tooter.py
parent8715023f5837b2783ad3da44410f415fbf855ab5 (diff)
Fixes for use off of tilde.chat/tildeverse
- correctly parses channels from config per config.example.yaml
- sets TLS to None in case of no TLS
  - on tilde.town we commonly connect to localhost w/o ssl
  - for ircrobots (and/or it's dependencies) TLS must be none (not
    false) or else it will assume SSL/TLS

I am not a python expert, so please feel free to comment or fix.
Diffstat (limited to 'tooter.py')
-rw-r--r--tooter.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tooter.py b/tooter.py
index 9c16e71..f2dba55 100644
--- a/tooter.py
+++ b/tooter.py
@@ -36,6 +36,10 @@ def think(self, line):
                 res = account.toot(f"{status}\n~{author}")
                 if res:
                     return "tooted! {}".format(res["url"])
+                else:
+                    return "tooted failed :("
+            else:
+                return "no account :("
         else:
             return HELP_TEXT