diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-18 10:46:18 -0700 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-18 10:46:18 -0700 |
commit | 49183003e512ed8e3e107fd4cbc7288a02f77f83 (patch) | |
tree | 574b35b0e33a9e859541075572fd269d5113e9ae /main.py | |
parent | 154fa93acfc3de44bd4d5e15c6704865427ee7ba (diff) | |
download | cmd2-git-49183003e512ed8e3e107fd4cbc7288a02f77f83.tar.gz |
Updated main.py debug/test app to have execute permissions and include ipy command
Diffstat (limited to 'main.py')
-rwxr-xr-x[-rw-r--r--] | main.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,5 +8,5 @@ if __name__ == '__main__': # Set "use_ipython" to True to include the ipy command if IPython is installed, which supports advanced interactive # debugging of your application via introspection on self. - app = Cmd(use_ipython=False) + app = Cmd(use_ipython=True) app.cmdloop() |