2 new revisions: Revision: 433e860597a4 Author: Jussi Malinen Date: Mon Jun 13 03:03:48 2011 Log: use tuple instead of string presentation http://code.google.com/p/robotframework/source/detail?r=433e860597a4
Revision: 3dc28fb97768 Author: Jussi Malinen Date: Mon Jun 13 03:04:23 2011 Log: merge http://code.google.com/p/robotframework/source/detail?r=3dc28fb97768 ============================================================================== Revision: 433e860597a4 Author: Jussi Malinen Date: Mon Jun 13 03:03:48 2011 Log: use tuple instead of string presentation http://code.google.com/p/robotframework/source/detail?r=433e860597a4 Modified: /src/robot/serializing/jsparser.py ======================================= --- /src/robot/serializing/jsparser.py Sun Jun 12 23:43:41 2011 +++ /src/robot/serializing/jsparser.py Mon Jun 13 03:03:48 2011 @@ -85,13 +85,13 @@ self._kw_index.pop() def create_link_to_current_location(self, key): - self._links[str(key)] = self._create_link() + self._links[tuple(key)] = self._create_link() def _create_link(self): return "keyword_"+".".join(str(v) for _, v in self._current_place) def link_to(self, key): - return self._links[str(key)] + return self._links[tuple(key)] def add_test(self, critical, passed): self._stats.add_test(critical, passed) ============================================================================== Revision: 3dc28fb97768 Author: Jussi Malinen Date: Mon Jun 13 03:04:23 2011 Log: merge http://code.google.com/p/robotframework/source/detail?r=3dc28fb97768
