Skip to content

Commit

Permalink
driver/usbstoragedriver: fix bmaptool call format string
Browse files Browse the repository at this point in the history
Fixes: 1a5c787 ("driver/usbstoragedriver: log what actually gets written")
Signed-off-by: Bastian Krause <bst@pengutronix.de>
  • Loading branch information
Bastian-Krause authored and Emantor committed Nov 25, 2020
1 parent eeddc4d commit fbbad04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labgrid/driver/usbstoragedriver.py
Expand Up @@ -107,7 +107,7 @@ def write_image(self, filename=None, mode=Mode.DD, partition=None, skip=0, seek=
"bmaptool",
"copy",
"{}".format(remote_path),
"{}{}".format(target),
"{}".format(target),
]
else:
raise ValueError
Expand Down

0 comments on commit fbbad04

Please sign in to comment.