Made startup message more dynamic (using data from headers)

This commit is contained in:
neersighted 2012-05-15 19:41:39 -07:00
parent 284733d91a
commit fef9e81a2e

2
bot.py
View file

@ -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) <https://github.com/ClouDev/CloudBot/>'
print 'CloudBot %s (%s) <http://git.io/cloudbotirc>' % (__version__, __status__)
bot = Bot()
bot.start_time = time.time()