summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/logreport.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/logreport.py b/scripts/logreport.py
index 1916232..a09743e 100644
--- a/scripts/logreport.py
+++ b/scripts/logreport.py
@@ -351,6 +351,8 @@ def _classify_profile_url(url, nickset):
return 'Favorites'
elif comps[1] == 'log':
return 'Log'
+ elif comps[1] == 'altars':
+ return 'Altars'
else:
return 'Profile'
@@ -358,6 +360,8 @@ def classify_url(method, url):
profile_classification = _classify_profile_url(url, Nickset)
if profile_classification:
return profile_classification
+ elif url.startswith('/altars')
+ return 'Altars'
elif url.startswith('/avatars/'):
return 'Avatars'
elif url.startswith('/refresh'):