Skip to content

Commit b6a3dad

Browse files
committed
Corrected spacing regression
1 parent 0bf0f88 commit b6a3dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mbed/mbed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def pquery(command, output_callback=None, stdin=None, **kwargs):
260260
stdout, _ = proc.communicate(stdin)
261261

262262
if very_verbose:
263-
log(stdout.decode("utf-8").strip() + "\n")
263+
log(stdout.decode("utf-8").strip() + "\n")
264264

265265
if proc.returncode != 0:
266266
raise ProcessException(proc.returncode, command[0], ' '.join(command), getcwd())

0 commit comments

Comments
 (0)