From fef9e81a2e7e32943492bb11c4c4ab06c0cc7f13 Mon Sep 17 00:00:00 2001 From: neersighted Date: Tue, 15 May 2012 19:41:39 -0700 Subject: [PATCH] Made startup message more dynamic (using data from headers) --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index da623f7..5fd2a4d 100755 --- a/bot.py +++ b/bot.py @@ -23,7 +23,7 @@ os.chdir(sys.path[0] or '.') # do stuff relative to the install directory class Bot(object): pass -print 'CloudBot 1.x (DEVELOPMENT) ' +print 'CloudBot %s (%s) ' % (__version__, __status__) bot = Bot() bot.start_time = time.time()