Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- # -*- coding: utf-8 -*-
-
- from subprocess import *
-
- try:
- from config.secure_config import *
- except ImportError:
- print "Can't find a secure_config file!"
- print "Make sure you have configured the bot by moving 'config/secure_config.py.default' to 'config/secure_config.py' and by filling out the information inside."
- exit()
-
- while 1:
- cmd = ['python', 'bot.py']
- call(cmd)
|