Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ url = "https://pypi.org/simple"
verify_ssl = true

[packages]
cmd2 = ">=0.10.0"
cmd2 = ">=2.0.0"

[dev-packages]
cmd2-abbrev = {editable = true,path = "."}
Expand Down
2 changes: 1 addition & 1 deletion cmd2_abbrev/abbrev.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __init__(self, *args, **kwargs):
# code placed here runs after cmd2 initializes
# this is where you register any hook functions
self.abbrev = False
self.add_settable(cmd2.Settable('abbrev', bool, 'Accept command abbreviations'))
self.add_settable(cmd2.Settable('abbrev', bool, 'Accept command abbreviations', self))
self.register_postparsing_hook(self.cmd2_abbrev_hook)

def cmd2_abbrev_hook(self, data: cmd2.plugin.PostparsingData) -> cmd2.plugin.PostparsingData:
Expand Down