summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorBrian Potchik <brian@vector35.com>2017-11-14 15:33:01 -0500
committerBrian Potchik <brian@vector35.com>2017-11-14 15:33:01 -0500
commit88af32b1b20026d3bc063be558f63aeb1ccfd579 (patch)
tree840e20dd2f5fc19b881d0e6d8a84eb7bb6d37c8d /python
parent0cff612e91e59a343fad898daa6fa51ab525a789 (diff)
Fix _get_instruction_alignment type.
Diffstat (limited to 'python')
-rw-r--r--python/architecture.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/architecture.py b/python/architecture.py
index 41a130bf..ed03a6e6 100644
--- a/python/architecture.py
+++ b/python/architecture.py
@@ -424,7 +424,7 @@ class Architecture(object):
log.log_error(traceback.format_exc())
return 4
- def __get_instruction_alignment(self, ctxt):
+ def _get_instruction_alignment(self, ctxt):
try:
return self.__class__.instr_alignment
except: