diff options
author | Eric Lin <anselor@gmail.com> | 2018-05-04 14:54:26 -0400 |
---|---|---|
committer | Eric Lin <anselor@gmail.com> | 2018-05-04 14:54:26 -0400 |
commit | ea5eb8e9bc957d4f9c211300103cc1a5d01c20f4 (patch) | |
tree | b64c2b95f21f82452ed7a5c448150be55533a885 /examples/subcommands.py | |
parent | 7d0782630dbc22c8222fbd9f57641d9d5e81c61f (diff) | |
download | cmd2-git-ea5eb8e9bc957d4f9c211300103cc1a5d01c20f4.tar.gz |
Another attempt at getting it working on travis.
Diffstat (limited to 'examples/subcommands.py')
-rwxr-xr-x | examples/subcommands.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/subcommands.py b/examples/subcommands.py index 9bf6c666..3dd2c683 100755 --- a/examples/subcommands.py +++ b/examples/subcommands.py @@ -41,9 +41,6 @@ try: from cmd2.argcomplete_bridge import CompletionFinder from cmd2.argparse_completer import AutoCompleter if __name__ == '__main__': - with open('out.txt', 'a') as f: - f.write('Here 1') - f.flush() completer = CompletionFinder() completer(base_parser, AutoCompleter(base_parser)) except ImportError: |