`u"" cleanup on cmd_usage.py
This commit is contained in:
parent
57d117e4f0
commit
255fb12f88
|
@ -68,9 +68,9 @@ def show_usage(args):
|
||||||
" ORDER BY `started` ASC LIMIT ?",
|
" ORDER BY `started` ASC LIMIT ?",
|
||||||
(args.n,))
|
(args.n,))
|
||||||
for row in c.fetchall():
|
for row in c.fetchall():
|
||||||
if row["type"] == u"rendezvous":
|
if row["type"] == "rendezvous":
|
||||||
counters = rendezvous_counters
|
counters = rendezvous_counters
|
||||||
elif row["type"] == u"transit":
|
elif row["type"] == "transit":
|
||||||
counters = transit_counters
|
counters = transit_counters
|
||||||
total_transit_bytes += row["total_bytes"]
|
total_transit_bytes += row["total_bytes"]
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user