Skip to content

Commit

Permalink
[skip ci] Fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinmo committed Sep 15, 2019
1 parent 2071c09 commit dbdaf43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can make a custom palette in IDAPython.
from __palette__ import show_palette, Palette, Action
import random, string

myhandler = lambda item: sys.stdout.write('You selected: %s\n' % item.description)
myhandler = lambda item: sys.stdout.write('You selected: %s\n' % item.name)
random_str = lambda: "".join(random.choice(string.lowercase) for i in range(20))

entries = [Action(name=random_str(), # displayed text
Expand Down

0 comments on commit dbdaf43

Please sign in to comment.