From: Luke Kenneth Casson Leighton Date: Tue, 4 Aug 2020 15:53:59 +0000 (+0100) Subject: whitespace after autopep8 messed up X-Git-Tag: semi_working_ecp5~448 X-Git-Url: https://git.libre-soc.org/?p=soc.git;a=commitdiff_plain;h=53b436bf2d3d776f74e7404a81511d95399ef249 whitespace after autopep8 messed up --- diff --git a/src/soc/decoder/isa/caller.py b/src/soc/decoder/isa/caller.py index 66e8ee49..8c5ec68e 100644 --- a/src/soc/decoder/isa/caller.py +++ b/src/soc/decoder/isa/caller.py @@ -112,8 +112,8 @@ class Mem: staddr = addr remainder = addr & (self.bytes_per_word - 1) addr = addr >> self.word_log2 - print("Writing 0x{:x} to ST 0x{:x} memaddr 0x{:x}/{:x}".format(v, - staddr, addr, remainder, swap)) + print("Writing 0x{:x} to ST 0x{:x} " + "memaddr 0x{:x}/{:x}".format(v, staddr, addr, remainder, swap)) assert remainder & (width - 1) == 0, "Unaligned access unsupported!" if swap: v = swap_order(v, width)