diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-01-30 20:50:19 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2016-01-30 21:14:20 +0100 |
| commit | d1eaeba1aab93a918d858750e2cc11a7ea283fbd (patch) | |
| tree | b2b8f867dbec627940b2be9406ae87a009c731bf /miasm2/core/asmbloc.py | |
| parent | 3bf16e07198476e614462cb189c7f0ce7a91e444 (diff) | |
| download | miasm-d1eaeba1aab93a918d858750e2cc11a7ea283fbd.tar.gz miasm-d1eaeba1aab93a918d858750e2cc11a7ea283fbd.zip | |
Autopep
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: |