diff options
author | yenatch <yenatch@gmail.com> | 2013-11-08 22:49:47 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-11-08 22:49:47 -0500 |
commit | 3013246d69fb83b282a93ee45beebab852fcb9ab (patch) | |
tree | 7e19071ef1b6b1f62b18d54c8eeefb06317a4535 | |
parent | e7385d6f04b20aa4faa5c068238bd3a227164bc4 (diff) |
cry_names: zfill(2)
-rw-r--r-- | pokemontools/cry_names.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemontools/cry_names.py b/pokemontools/cry_names.py index bee335f..af08fe1 100644 --- a/pokemontools/cry_names.py +++ b/pokemontools/cry_names.py @@ -1,4 +1,4 @@ # coding: utf-8 -cry_names = ['%X' % x for x in xrange(0x44)] +cry_names = ['%.2X' % x for x in xrange(0x44)] |