Commit 4ee0b76e authored by Brendan Gregg's avatar Brendan Gregg

Merge pull request #432 from iovisor/bblanco_dev

Enable python3 compatible strings in biosnoop
parents afc11804 aa85f33e
...@@ -154,7 +154,7 @@ def print_event(cpu, data, size): ...@@ -154,7 +154,7 @@ def print_event(cpu, data, size):
if event.rwflag == 0: if event.rwflag == 0:
rwflg = "R" rwflg = "R"
if not re.match('\?', event.name): if not re.match(b'\?', event.name):
val = event.sector val = event.sector
if start_ts == 0: if start_ts == 0:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment