Skip to content

Commit 02804ba

Browse files
committed
Fixed a case of too few format string parameters.
- Legacy-Id: 17768
1 parent 81197f0 commit 02804ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/doc/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def get_base_name(self):
158158
else:
159159
self._cached_base_name = "%s-%s.txt" % (self.name, self.rev)
160160
elif self.type_id in ["slides", "agenda", "minutes", "bluesheets", ] and self.meeting_related():
161-
self._cached_base_name = "%s-%s.txt" % self.canonical_name()
161+
self._cached_base_name = "%s-%s.txt" % (self.canonical_name(), self.rev)
162162
elif self.type_id == 'review':
163163
# TODO: This will be wrong if a review is updated on the same day it was created (or updated more than once on the same day)
164164
self._cached_base_name = "%s.txt" % self.name

0 commit comments

Comments
 (0)