Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugin.py')
-rw-r--r--plugin.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/plugin.py b/plugin.py
index 88d418d..0d0d2d5 100644
--- a/plugin.py
+++ b/plugin.py
@@ -49,11 +49,10 @@ if supybotconfig.is_supybotconfig_enabled(meeting.Config):
# By doing this, we can not lose all of our meetings across plugin
# reloads. But, of course, you can't change the source too
# drastically if you do that!
-try:
- meeting_cache
-except NameError:
- meeting_cache = {}
- recent_meetings = [ ]
+try: meeting_cache
+except NameError: meeting_cache = {}
+try: recent_meetings
+except NameError: recent_meetings = [ ]
class MeetBot(callbacks.Plugin):