diff options
Diffstat (limited to 'scripts/show_delta')
-rwxr-xr-x | scripts/show_delta | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/show_delta b/scripts/show_delta index 28e67e1781..291ad65e30 100755 --- a/scripts/show_delta +++ b/scripts/show_delta @@ -125,4 +125,5 @@ def main(): for line in lines: print (convert_line(line, base_time),) -main() +if __name__ == "__main__": + main() |