We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3d84ea commit 0481d97Copy full SHA for 0481d97
1 file changed
ietf/doc/views_stats.py
@@ -83,8 +83,10 @@ def make_title(queryargs):
83
title += ' revisions'
84
# radio choices
85
by = queryargs.get('by')
86
- if by == "author":
87
- title += ' with author %s' % queryargs['author'].title()
+ if by == 'author':
+ author = queryargs.get('author')
88
+ if author:
89
+ title += ' with author %s' % author.title()
90
elif by == "group":
91
group = queryargs.get('group')
92
if group:
0 commit comments