Index: shared/scripts/configuration/utility.py =================================================================== diff -u -r6a37927fcc4a0da063ed10c1a9bd947d1fea15b7 -r1e55cf6061625c67f5c5656b282ede2a88d8def8 --- shared/scripts/configuration/utility.py (.../utility.py) (revision 6a37927fcc4a0da063ed10c1a9bd947d1fea15b7) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision 1e55cf6061625c67f5c5656b282ede2a88d8def8) @@ -81,9 +81,9 @@ 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_str + padded_str = "###"+string + return padded_str