mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Merge pull request #48 from mdaniel/patch-1
Change OPML export filename to use ISO date format
This commit is contained in:
commit
a44189ced4
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ def opml_export(request):
|
|||
|
||||
response = HttpResponse(opml, mimetype='text/xml')
|
||||
response['Content-Disposition'] = 'attachment; filename=NewsBlur Subscriptions - %s' % (
|
||||
now.strftime('%d %B %Y')
|
||||
now.strftime('%Y-%m-%d')
|
||||
)
|
||||
|
||||
return response
|
||||
|
|
Loading…
Add table
Reference in a new issue