Skip to content

Commit

Permalink
[show]: Fix improper indents (sonic-net#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
jleveque authored Oct 5, 2017
1 parent 2c63a41 commit ddadc2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions show/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,9 @@ def details(interfacename):
@interfaces.command()
@click.argument('interfacename', required=False)
def description(interfacename):
if interfacename is not None:
if interfacename is not None:
command = "sudo vtysh -c 'show interface {}'".format(interfacename)
else:
else:
command = "sudo vtysh -c 'show interface description'"

run_command(command)
Expand Down

0 comments on commit ddadc2b

Please sign in to comment.