summaryrefslogtreecommitdiff
path: root/examples/subcommands.py
diff options
context:
space:
mode:
authorEric Lin <anselor@gmail.com>2018-05-04 14:54:26 -0400
committerEric Lin <anselor@gmail.com>2018-05-04 14:54:26 -0400
commitea5eb8e9bc957d4f9c211300103cc1a5d01c20f4 (patch)
treeb64c2b95f21f82452ed7a5c448150be55533a885 /examples/subcommands.py
parent7d0782630dbc22c8222fbd9f57641d9d5e81c61f (diff)
downloadcmd2-git-ea5eb8e9bc957d4f9c211300103cc1a5d01c20f4.tar.gz
Another attempt at getting it working on travis.
Diffstat (limited to 'examples/subcommands.py')
-rwxr-xr-xexamples/subcommands.py3
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: