Avoid BytesWarning in debugging messages in Python 3
authorMartin Panter <vadmium à gmail·com>
Wed, 12 Feb 2014 02:43:19 +0000 (02:43 +0000)
committerMartin Panter <vadmium à gmail·com>
Thu, 1 May 2014 12:02:58 +0000 (12:02 +0000)
elftools/elf/sections.py

index ce6245057ee798380755e0e60c426bc144897d15..62ff0196c6782eb0e20b9687b519d4e6aea107e9 100644 (file)
@@ -77,9 +77,9 @@ class SymbolTableSection(Section):
         self.elfstructs = self.elffile.structs
         self.stringtable = stringtable
         elf_assert(self['sh_entsize'] > 0,
-                'Expected entry size of section %s to be > 0' % name)
+                'Expected entry size of section %r to be > 0' % name)
         elf_assert(self['sh_size'] % self['sh_entsize'] == 0,
-                'Expected section size to be a multiple of entry size in section %s' % name)
+                'Expected section size to be a multiple of entry size in section %r' % name)
 
     def num_symbols(self):
         """ Number of symbols in the table