more whitespace
[nmigen-soc.git] / nmigen_soc / memory.py
index 8f1e6a18ce43e6e363fdd8723e48e6f81583fc00..85d8cd887cd693b40f7c4517a005fc8748c2e5ca 100644 (file)
@@ -144,7 +144,8 @@ class MemoryMap:
 
         if addr > (1 << self.addr_width) or addr + \
                 size > (1 << self.addr_width):
-            raise ValueError("Address range {:#x}..{:#x} out of bounds for memory map spanning "
+            raise ValueError("Address range {:#x}..{:#x} out of bounds "
+                             "for memory map spanning "
                              "range {:#x}..{:#x} ({} address bits)"
                              .format(addr, addr + size, 0,
                                      1 << self.addr_width, self.addr_width))