diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-03-13 21:40:56 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-03-13 21:40:56 -0400 |
commit | 8c1e01886853471d8dadd473f491f310937b01d0 (patch) | |
tree | f41bf6a8699495575640d0d8fda37d45d0e4d056 /tests/script.py | |
parent | 8b0505c5ccdc7516572afe1426d82666f97232af (diff) | |
download | cmd2-git-8c1e01886853471d8dadd473f491f310937b01d0.tar.gz |
Mostly fix a bunch of spelling mistakes.
A few other miscellaneous minor tweaks for whitespace and such.
Diffstat (limited to 'tests/script.py')
-rw-r--r-- | tests/script.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/script.py b/tests/script.py index 30d45960..5195b8cc 100644 --- a/tests/script.py +++ b/tests/script.py @@ -1,2 +1,6 @@ #!/usr/bin/env python -print("This is a python script running ...")
\ No newline at end of file +# coding=utf-8 +""" +Trivial example of a Python script which can be run inside a cmd2 application. +""" +print("This is a python script running ...") |