From 3940c0aceac9ea022137c8c8b8876db7882ee85d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bo=CC=88rni?= Date: Sun, 17 Jun 2012 14:28:22 +0200 Subject: [PATCH] [CLEANUP] --- beautifulmind/mindmap/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beautifulmind/mindmap/views.py b/beautifulmind/mindmap/views.py index 478a2ef..7ff5bef 100644 --- a/beautifulmind/mindmap/views.py +++ b/beautifulmind/mindmap/views.py @@ -142,7 +142,7 @@ def map_export_form(request, mindmap_pk): else: export_file = default_storage.save('%s%s-%s.%s' % ( EXPORTS_SAVE_PATH, - datetime.now().strftime("%Y-%m-%d_%H%M%S"), + datetime.now().strftime('%Y-%m-%d_%H%M%S'), mindmap.slug, export_format), ContentFile(tmpfile.file.read()) )