Skip to content

Commit b72ff33

Browse files
committed
MNT #158 read entire line
1 parent 9d20957 commit b72ff33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apstools/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def command_list_as_table(commands, show_raw=False):
9494
if show_raw: # only the developer might use this
9595
tbl.addLabel("raw input")
9696
for command in commands:
97-
action, args, line_number, raw_command = command[:-1]
97+
action, args, line_number, raw_command = command
9898
row = [line_number, action, ", ".join(map(str, args))]
9999
if show_raw:
100100
row.append(str(raw_command))

0 commit comments

Comments
 (0)