summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Wood <thomas.wood@intel.com>2014-03-27 15:52:49 +0000
committerDylan Baker <baker.dylan.c@gmail.com>2014-04-02 10:21:01 -0700
commitf3da3082b5a5fd083f33d73fbb5e6bb8928c01ef (patch)
tree04ed164b664625cd3da83f1b531f7f2069627fdf
parentdb1acd6d7b62df34aee21117db766443173736d2 (diff)
Remove extra newline from the end of run message
The extra newline is no longer necessary as the final summary line includes one. Signed-off-by: Thomas Wood <thomas.wood@intel.com> Reviewed-by: Dylan Baker <baker.dylan.c@gmail.com>
-rwxr-xr-xpiglit-resume.py3
-rwxr-xr-xpiglit-run.py3
2 files changed, 2 insertions, 4 deletions
diff --git a/piglit-resume.py b/piglit-resume.py
index c9cb72bbb..09d0664e6 100755
--- a/piglit-resume.py
+++ b/piglit-resume.py
@@ -87,8 +87,7 @@ def main():
json_writer.close_dict()
json_writer.file.close()
- print("\n"
- "Thank you for running Piglit!\n"
+ print("Thank you for running Piglit!\n"
"Results have ben wrriten to {0}".format(results_path))
if __name__ == "__main__":
diff --git a/piglit-run.py b/piglit-run.py
index d57abd739..672c05752 100755
--- a/piglit-run.py
+++ b/piglit-run.py
@@ -177,8 +177,7 @@ def main():
json_writer.close_dict()
json_writer.file.close()
- print('\n'
- 'Thank you for running Piglit!\n'
+ print('Thank you for running Piglit!\n'
'Results have been written to ' + result_filepath)