From 6cfee9293d18efed76dc2c83d7a00b1b40230bbf Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jure=20=C5=BDabkar?= <jure.zabkar@fri.uni-lj.si>
Date: Tue, 15 Dec 2015 10:49:23 +0100
Subject: Popravek v namigu za problem followline

---
 robot/problems/introduction/followline/common.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/robot/problems/introduction/followline/common.py b/robot/problems/introduction/followline/common.py
index 46df5c6..e28ca35 100644
--- a/robot/problems/introduction/followline/common.py
+++ b/robot/problems/introduction/followline/common.py
@@ -59,13 +59,13 @@ def hint( code):
     if not (has_token_sequence(tokens, ['connect_sensor', '(' ]) and 'color' in code):
         return [{'id': 'connectColorSensor'}]
 
-    if not (has_token_sequence(tokens, ['move_steering', '(']) and 'on' in code):
+    if not (has_token_sequence(tokens, ['move_tank', '(']) and 'on' in code):
         return [{'id': 'moveTankOn'}]
 
     if not 'lr_power' in code:
         return [{'id': 'lrPower'}]
 
-    if not (has_token_sequence(tokens, ['move_steering', '(']) and 'off' in code):
+    if not (has_token_sequence(tokens, ['move_tank', '(']) and 'off' in code):
         return [{'id': 'moveTankOff'}]
 
     if not (has_token_sequence(tokens, ['color_sensor_measure', '(']) and 'reflected_light_intensity' in code):
-- 
cgit v1.2.1