summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2016-04-20 16:05:14 -0400
committerJordan Wiens <jordan@psifertex.com>2016-04-20 16:05:14 -0400
commit12217ad7a1d821c4d232e04da2c9ac4b4e365bf6 (patch)
tree29de9783473f0697135583eefd7c701577e74924 /python
parent27ac9881fa35ea3f55a3ac9322a57b4fb8bb4833 (diff)
missing or
Diffstat (limited to 'python')
-rw-r--r--python/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/__init__.py b/python/__init__.py
index f4e3214f..a2769738 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -2115,7 +2115,7 @@ class BasicBlock:
def __setattr__(self, name, value):
if ((name == "function") or (name == "arch") or (name == "start") or (name == "end") or
- (name == "length") (name == "outgoing_edges") or (name == "has_undetermined_outgoing_edges")):
+ (name == "length") or (name == "outgoing_edges") or (name == "has_undetermined_outgoing_edges")):
raise AttributeError, "attribute '%s' is read only" % name
else:
self.__dict__[name] = value