mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Removing spaces from OPML export because some users have mentioned that the OPML file is just called 'NewsBlur' and not 'NewsBlur Subs - username - 14-09-2015'.
This commit is contained in:
parent
9a7b994fcf
commit
b1f543ee0a
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ def opml_export(request):
|
|||
opml = exporter.process()
|
||||
|
||||
response = HttpResponse(opml, mimetype='text/xml')
|
||||
response['Content-Disposition'] = 'attachment; filename=NewsBlur Subscriptions - %s - %s' % (
|
||||
response['Content-Disposition'] = 'attachment; filename=NewsBlur-%s-%s' % (
|
||||
user.username,
|
||||
now.strftime('%Y-%m-%d')
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue