Skip to content

Commit

Permalink
modules: param_help.py: pad enum value to make columns align nicely
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbarker committed Jul 9, 2024
1 parent be3885b commit 00afedf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MAVProxy/modules/lib/param_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def param_help(self, args):
if len(values):
print("\nValues: ")
for v in values:
print("\t%s : %s" % (v.get('code'), str(v)))
print("\t%3u : %s" % (int(v.get('code')), str(v)))
except Exception as e:
print("Caught exception %s" % repr(e))
pass
Expand Down

0 comments on commit 00afedf

Please sign in to comment.