Handle beta cookies in the cookie classifier.

This commit is contained in:
Max Goodman
2013-03-19 13:47:42 -07:00
parent e1de4097f3
commit 66c158bd56

View File

@@ -172,6 +172,8 @@ class Cookie(object):
return "clicks"
elif cookie_name.startswith("__utm"):
return "ga"
elif cookie_name.startswith("beta_"):
return "beta"
else:
return "other"