Index: shared/scripts/configuration/utility.py =================================================================== diff -u -rb559c0d4beaee4e03a30c1d8c78dfe2edda21339 -r9e0af0da00e59d90ff8e3e3d389e72f713daef7b --- shared/scripts/configuration/utility.py (.../utility.py) (revision b559c0d4beaee4e03a30c1d8c78dfe2edda21339) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision 9e0af0da00e59d90ff8e3e3d389e72f713daef7b) @@ -462,12 +462,12 @@ def msg(string): """ - added ### at the right side of the string to make sure that it is a message. + Added ### at the right side of the string to make sure that it is a message. @param string: (str) the string to add trailing ### to - @return: (str) padded string + @return pad_str: (str) padded string """ - pad_str = "###"+string - return pad_strg + padded_str = "###"+string + return padded_str def navigate_to_pretreatment_screen(mode): """ @@ -837,5 +837,3 @@ indicator_parent = children_obj[2] indicators = object.children(indicator_parent) return indicators - -