Skip to content

Commit bb3fbf0

Browse files
committed
slight tweak to table formatting
1 parent acf667b commit bb3fbf0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

nibabel/cmdline/diff.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,14 +144,15 @@ def main():
144144
print("{:<11}".format('Field'), end="", flush=True)
145145

146146
for f in files:
147-
print("{:<40}".format(f), end="", flush=True)
147+
print("{:<45}".format(f), end="", flush=True)
148148
print("\n")
149149

150150
for x in diff:
151151
print("{:<11}".format(x), end="", flush=True)
152152

153153
for e in diff[x]:
154-
print("{:<40}".format(e), end="", flush=True)
154+
print("{:<45}".format(e), end="", flush=True)
155+
155156
print("\n")
156157

157158
# elif opts.json:

0 commit comments

Comments
 (0)