Convert provided bitstring to a simple string of hex digits
(s)
| 392 | |
| 393 | |
| 394 | def repr_hex(s): |
| 395 | # type: (bytes) -> str |
| 396 | """ Convert provided bitstring to a simple string of hex digits """ |
| 397 | return "".join("%02x" % orb(x) for x in s) |
| 398 | |
| 399 | |
| 400 | @conf.commands.register |
no test coverage detected