From c747c4dbb0af6d6e50c8fd27f40a664dd52f88f4 Mon Sep 17 00:00:00 2001 From: Matthew Yu <56417255+matthewyu01@users.noreply.github.com> Date: Fri, 24 May 2024 10:28:15 -0700 Subject: [PATCH] Set default file to article.aml instead of .md (#96) --- kerckhoff/packages/google_drive_actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kerckhoff/packages/google_drive_actions.py b/kerckhoff/packages/google_drive_actions.py index 0de2ad8..d334a57 100644 --- a/kerckhoff/packages/google_drive_actions.py +++ b/kerckhoff/packages/google_drive_actions.py @@ -122,7 +122,7 @@ def create_package(session, package, existing=False): file_payload = { 'parents': [{'id': folder_resource['id']}], - 'title': "article.md", + 'title': "article.aml", 'description': "Article data", 'mimeType': "application/vnd.google-apps.document" }