diff options
Diffstat (limited to 'examples/pirate.py')
-rwxr-xr-x | examples/pirate.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/pirate.py b/examples/pirate.py index 32d7769e..f8c91315 100755 --- a/examples/pirate.py +++ b/examples/pirate.py @@ -6,7 +6,8 @@ presented as part of her PyCon 2010 talk. It demonstrates many features of cmd2. """ -from cmd2 import Cmd, options, make_option +from cmd2 import Cmd, options +from optparse import make_option class Pirate(Cmd): |