(cmd_txt, indent=0)
| 1028 | |
| 1029 | |
| 1030 | def expand_multiline(cmd_txt, indent=0): |
| 1031 | return re.sub(r' +', " %s\n %s" % (Commands.cmd_continuation_char, " "*indent), cmd_txt) |
| 1032 | |
| 1033 | |
| 1034 | def unix_to_datetime(unix_stamp): |
no test coverage detected
searching dependent graphs…