datacenter / acitoolkit

A basic toolkit for accessing the Cisco APIC
Other
347 stars 266 forks source link

Python3 script aci-report-switch.py returns an invalid systax error, line 203. #357

Closed guyster closed 4 years ago

guyster commented 4 years ago

snag:

File "aci-report-switch.py", line 203 print render_text_switch(switch, args.tablefmt) ^ SyntaxError: invalid syntax

FIX:

add a pair of brackets before render_text_switch: print (render_text_switch(switch, args.tablefmt))

Regards, Guy St-Pierre