Skip to content

Commit

Permalink
Fixed spaces to tab
Browse files Browse the repository at this point in the history
  • Loading branch information
rohit-mundra committed Mar 7, 2024
1 parent 69e2c24 commit fb4c658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tc_wrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def get_tagged(self):
"* 2> /dev/null", shell=True, bufsize=4096,
stdout=PIPE).stdout
for line in output:
param, val = line.decode("utf-8").strip().split(":", 1)
param, val=line.decode("utf-8").strip().split(":", 1)
vlan = param.split('.')[-1]
for item in val.split(":", 1)[1].split():
skprio, up = item.split(':')
Expand Down

0 comments on commit fb4c658

Please sign in to comment.