Skip to content

Commit 6c5dc9d

Browse files
committed
Fix missing argument (gramps-project/gramps-web#212
1 parent 6f6035f commit 6c5dc9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gramps_webapi/api/resources/exporters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def get(self, args: Dict, extension: str) -> Response:
186186
class ExporterFileResultResource(ProtectedResource, GrampsJSONEncoder):
187187
"""Export file result resource."""
188188

189-
def get(self, filename: str) -> Response:
189+
def get(self, extension: str, filename: str) -> Response:
190190
"""Get the processed file."""
191191
export_path = current_app.config.get("EXPORT_DIR")
192192

0 commit comments

Comments
 (0)