about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorserpilliere <fabrice.desclaux@cea.fr>2016-03-13 20:53:58 +0100
committerserpilliere <fabrice.desclaux@cea.fr>2016-03-13 20:53:58 +0100
commit1bf8fe58d6580a7af1cc0a6b6599d2cc0bdc986c (patch)
treee08c53675646d2f216d939d13077cf3b8734876e
parentf0aafd6cf7d0177c572c5e0e1f27637337500d06 (diff)
downloadmiasm-1bf8fe58d6580a7af1cc0a6b6599d2cc0bdc986c.tar.gz
miasm-1bf8fe58d6580a7af1cc0a6b6599d2cc0bdc986c.zip
X86/sem: autopep8
-rw-r--r--miasm2/arch/x86/sem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/x86/sem.py b/miasm2/arch/x86/sem.py
index 2534b253..cc227819 100644
--- a/miasm2/arch/x86/sem.py
+++ b/miasm2/arch/x86/sem.py
@@ -3607,7 +3607,7 @@ def ps_rl_ll(ir, instr, a, b, op, size):
     e_do = []
     slices = []
     for i in xrange(0, a.size, size):
-        slices.append((m2_expr.ExprOp(op,a[i:i + size], count[:size]),
+        slices.append((m2_expr.ExprOp(op, a[i:i + size], count[:size]),
                        i, i + size))
     e.append(m2_expr.ExprAff(a[0:a.size], m2_expr.ExprCompose(slices)))
     e_do.append(m2_expr.ExprAff(ir.IRDst, lbl_next))