diff options
| author | Brian Potchik <brian@vector35.com> | 2017-11-14 15:33:01 -0500 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2017-11-14 15:33:01 -0500 |
| commit | 88af32b1b20026d3bc063be558f63aeb1ccfd579 (patch) | |
| tree | 840e20dd2f5fc19b881d0e6d8a84eb7bb6d37c8d /python | |
| parent | 0cff612e91e59a343fad898daa6fa51ab525a789 (diff) | |
Fix _get_instruction_alignment type.
Diffstat (limited to 'python')
| -rw-r--r-- | python/architecture.py | 2 |
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: |
