Fixed arrow direction (#116)

This commit is contained in:
Gulshan Singh 2016-09-23 16:11:55 -07:00 committed by GitHub
parent 8d2959c53a
commit 26f7321c60
1 changed files with 2 additions and 2 deletions

4
pwndbg/chain.py Normal file → Executable file
View File

@ -37,8 +37,8 @@ def get(address, limit=LIMIT, offset=0):
return result return result
config_arrow_left = theme.Parameter('chain-arrow-left', u'', 'left arrow of chain formatting') config_arrow_left = theme.Parameter('chain-arrow-left', u'', 'left arrow of chain formatting')
config_arrow_right = theme.Parameter('chain-arrow-right', u'', 'right arrow of chain formatting') config_arrow_right = theme.Parameter('chain-arrow-right', u'', 'right arrow of chain formatting')
config_contiguous = theme.Parameter('chain-contiguous-marker', '...', 'contiguous marker of chain formatting') config_contiguous = theme.Parameter('chain-contiguous-marker', '...', 'contiguous marker of chain formatting')
def format(value, limit=LIMIT, code=True, offset=0): def format(value, limit=LIMIT, code=True, offset=0):