Changeset - 1c33f9d141d9
[Not reviewed]
default
0 1 0
Dennis Fink - 9 years ago 2016-10-24 14:55:32
dennis.fink@c3l.lu
Fix choosing of tweets
1 file changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
spaceapi/utils.py
Show inline comments
 
@@ -17,16 +17,16 @@ if not os.path.exists(default_json_file)
 
elif not os.path.isfile(default_json_file):
 
    raise RuntimeError('default.json is not a file!')
 

	
 
possible_open_tweets = {
 
possible_open_tweets = (
 
    'The space is now open!',
 
    'The space is open! Come in and hack something!',
 
    'Yes, we\'re open! Come in and create something!',
 
}
 
)
 

	
 
possible_closed_tweets = {
 
possible_closed_tweets = (
 
    'The space is now closed!',
 
    'We\'re closed now! See you soon.',
 
}
 
)
 

	
 

	
 
def send_tweet(tweet):
0 comments (0 inline, 0 general)