##// END OF EJS Templates
statsd: fix unicode tags generation as we use str now
super-admin -
r1007:f8538526 default
parent child Browse files
Show More
@@ -8,7 +8,10 b' from repoze.lru import lru_cache'
8
8
9 from .timer import Timer
9 from .timer import Timer
10
10
11 TAG_INVALID_CHARS_RE = re.compile(r"[^\w\d_\-:/\.]", re.UNICODE)
11 TAG_INVALID_CHARS_RE = re.compile(
12 r"[^\w\d_\-:/\.]",
13 #re.UNICODE
14 )
12 TAG_INVALID_CHARS_SUBS = "_"
15 TAG_INVALID_CHARS_SUBS = "_"
13
16
14
17
General Comments 0
You need to be logged in to leave comments. Login now