Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/simulator/simulator
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simulator/simulator')
-rwxr-xr-xtests/simulator/simulator6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/simulator/simulator b/tests/simulator/simulator
index de21697..552512c 100755
--- a/tests/simulator/simulator
+++ b/tests/simulator/simulator
@@ -13,10 +13,10 @@ PresenceService.start()
base_path = os.path.abspath(os.path.dirname(__file__))
-bots_path = os.path.join(base_path, 'bots')
-for bot_file in os.listdir(bots_path):
+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':
- execfile(os.path.join(bots_path, bot_file))
+ execfile(os.path.join(stage_path, bot_file))
mainloop = gobject.MainLoop()
mainloop.run()