Get rid of the old simulator

This commit is contained in:
Marco Pesenti Gritti
2006-10-10 16:35:52 +02:00
parent f1f0e9d26c
commit 3f68640c13
4 changed files with 1 additions and 178 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ base_path = os.path.abspath(os.path.dirname(__file__))
stage_path = os.path.join(base_path, 'demo')
for bot_file in os.listdir(stage_path):
if bot_file.endswith('.py') and bot_file != 'kiu.py':
if bot_file.endswith('.py'):
execfile(os.path.join(stage_path, bot_file))
mainloop = gobject.MainLoop()