From abff08d802f4f0735e223fe98b1540725446dacf Mon Sep 17 00:00:00 2001 From: Felix Agner <felix.agner@control.lth.se> Date: Tue, 1 Nov 2022 13:43:09 +0100 Subject: [PATCH] small bugfix --- src/omnibot/dummybot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/omnibot/dummybot.py b/src/omnibot/dummybot.py index 570a4da..ab47eba 100644 --- a/src/omnibot/dummybot.py +++ b/src/omnibot/dummybot.py @@ -33,7 +33,7 @@ def run_dummybot(HOST,verbose=True): bot.set_speeds([-vset,-vset,-vset]) - print('theta:'+bot.get_theta()) + print('theta:'+str(bot.get_theta())) sleep(max(0,t0+ts-time())) -- GitLab