We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf667b commit bb3fbf0Copy full SHA for bb3fbf0
nibabel/cmdline/diff.py
@@ -144,14 +144,15 @@ def main():
144
print("{:<11}".format('Field'), end="", flush=True)
145
146
for f in files:
147
- print("{:<40}".format(f), end="", flush=True)
+ print("{:<45}".format(f), end="", flush=True)
148
print("\n")
149
150
for x in diff:
151
print("{:<11}".format(x), end="", flush=True)
152
153
for e in diff[x]:
154
- print("{:<40}".format(e), end="", flush=True)
+ print("{:<45}".format(e), end="", flush=True)
155
+
156
157
158
# elif opts.json:
0 commit comments