Skip to content

Commit 77aa472

Browse files
committed
Use the right path for other document types in
/iesg/agenda/telechat-YYYY-MM-DD-docs.tgz which now as a side-effect of the port can bundle more than just drafts - Legacy-Id: 6410
1 parent bfde86f commit 77aa472

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/iesg/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def telechat_docs_tarfile(request, date):
368368
manifest = StringIO.StringIO()
369369

370370
for doc in docs:
371-
doc_path = os.path.join(settings.INTERNET_DRAFT_PATH, doc.name + "-" + doc.rev + ".txt")
371+
doc_path = os.path.join(doc.get_file_path(), doc.name + "-" + doc.rev + ".txt")
372372
if os.path.exists(doc_path):
373373
try:
374374
tarstream.add(doc_path, str(doc.name + "-" + doc.rev + ".txt"))

0 commit comments

Comments
 (0)