Skip to content

Commit

Permalink
Merge pull request #45 from seils/master
Browse files Browse the repository at this point in the history
Fix for  CLI Issue #44
  • Loading branch information
michsmit99 committed Mar 20, 2015
2 parents 792246e + ae28e17 commit 2021399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions applications/cli/acitoolkitcli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1128,7 +1128,7 @@ def precmd(self, line, check_no=False):
try:
self.sequence_number = int(cmd)
cmd, arg, line = self.parseline(arg)
except ValueError:
except (ValueError, TypeError):
pass

if arg == '?':
Expand Down Expand Up @@ -1156,7 +1156,7 @@ def __init__(self):
self.epg = None
self.set_prompt()
self.intro = ('\nCisco ACI Toolkit Command Shell\nCopyright (c)'
' 2014, Cisco Systems, Inc. All rights reserved.')
' 2015, Cisco Systems, Inc. All rights reserved.')
self.negative = False
self.configsubmode = ConfigSubMode()
self.configsubmode.set_apic(apic)
Expand Down

0 comments on commit 2021399

Please sign in to comment.