diff options
Diffstat (limited to 'miasm2/core/asmbloc.py')
| -rw-r--r-- | miasm2/core/asmbloc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/core/asmbloc.py b/miasm2/core/asmbloc.py index dea0577b..38d3d17a 100644 --- a/miasm2/core/asmbloc.py +++ b/miasm2/core/asmbloc.py @@ -708,14 +708,14 @@ class AsmCFG(DiGraph): def node2lines(self, node): yield self.DotCellDescription(text=str(node.label.name), attr={'align': 'center', - 'colspan': 2, + 'colspan': 2, 'bgcolor': 'grey'}) if isinstance(node, asm_block_bad): yield [self.DotCellDescription( text=node.ERROR_TYPES.get(node._errno, node._errno), - attr={}) + attr={})] raise StopIteration for line in node.lines: if self._dot_offset: |