diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2016-04-20 16:05:14 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2016-04-20 16:05:14 -0400 |
| commit | 12217ad7a1d821c4d232e04da2c9ac4b4e365bf6 (patch) | |
| tree | 29de9783473f0697135583eefd7c701577e74924 /python | |
| parent | 27ac9881fa35ea3f55a3ac9322a57b4fb8bb4833 (diff) | |
missing or
Diffstat (limited to 'python')
| -rw-r--r-- | python/__init__.py | 2 |
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 |
