python-netflow-v9-softflowd
python-netflow-v9-softflowd copied to clipboard
Fixed string conversion from bytes
Currently, if a string is read from bytes "foobar", it gets represented by str("foobar) as `"b'foobar'".
This PR changes it to use decode to get the real representation