We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77cf791 commit e5807b6Copy full SHA for e5807b6
.gitignore
@@ -28,4 +28,4 @@ dmypy.json
28
dmypy.sock
29
30
# cmd2 history file used in hello_cmd2.py
31
-cmd2_history.txt
+cmd2_history.dat
examples/hello_cmd2.py
@@ -11,7 +11,7 @@
11
12
# Set "use_ipython" to True to include the ipy command if IPython is installed, which supports advanced interactive
13
# debugging of your application via introspection on self.
14
- app = cmd2.Cmd(use_ipython=True, persistent_history_file='cmd2_history.txt')
+ app = cmd2.Cmd(use_ipython=True, persistent_history_file='cmd2_history.dat')
15
app.locals_in_py = True # Enable access to "self" within the py command
16
app.debug = True # Show traceback if/when an exception occurs
17
sys.exit(app.cmdloop())
0 commit comments