summaryrefslogtreecommitdiff
path: root/examples/subcommands.py
diff options
context:
space:
mode:
authorEric Lin <anselor@gmail.com>2018-05-16 10:39:49 -0400
committerEric Lin <anselor@gmail.com>2018-05-16 10:39:49 -0400
commit371284d20370a8e85dd8527d9bbcc6267b335cde (patch)
tree002ac709eca15522a0b1abaa235aae04975b08e6 /examples/subcommands.py
parentab8194e92b9c3728d8f86cb9c81de180b6884eee (diff)
parenta9b712108e5af49937b0af3aa51db2ebe5c159e4 (diff)
downloadcmd2-git-371284d20370a8e85dd8527d9bbcc6267b335cde.tar.gz
Merge branch 'master' into pyscript
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: