flow/ala: fix typo for And (thanks Lars)

This commit is contained in:
Sebastien Bourdeauducq 2012-01-22 00:32:02 +01:00
parent b15eae3081
commit 1966117e17
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class Mul(_SimpleBinary):
class And(_SimpleBinary):
def __init__(self, bv):
_SimpleBinary.__init__(self, '*', bv, bv)
_SimpleBinary.__init__(self, '&', bv, bv)
class Xor(_SimpleBinary):
def __init__(self, bv):