Skip to content

Commit da46dde

Browse files
committed
spaces are good.
1 parent 9da3c3e commit da46dde

File tree

1 file changed

+1
-1
lines changed
  • pebble_tool/commands/sdk/project

1 file changed

+1
-1
lines changed

pebble_tool/commands/sdk/project/debug.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def __call__(self, args):
6969

7070
add_symbol_file = 'add-symbol-file "{elf}" {text} '.format(elf=app_elf_path, **offsets)
7171
del offsets['text']
72-
add_symbol_file += ''.join('-s .{} {}'.format(k, v) for k, v in iteritems(offsets))
72+
add_symbol_file += ' '.join('-s .{} {}'.format(k, v) for k, v in iteritems(offsets))
7373

7474
gdb_commands = [
7575
"set charset US-ASCII", # Avoid a bug in the ancient version of libiconv apple ships.

0 commit comments

Comments
 (0)