From f7e954491c75b31b06e7a1eb26d0f8193bc422ad Mon Sep 17 00:00:00 2001 From: Marco Rougeth Date: Mon, 5 May 2014 00:02:54 -0300 Subject: [PATCH] Abstracting Gist's options --- dpaste/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dpaste/views.py b/dpaste/views.py index ff71c89..11d05ea 100644 --- a/dpaste/views.py +++ b/dpaste/views.py @@ -209,10 +209,10 @@ def snippet_gist(request, snippet_id): # pragma: no cover """ snippet = get_object_or_404(Snippet, secret_id=snippet_id) data = { - 'description': 'the description for this gist', + 'description': getattr(settings, 'DPASTE_DEFAULT_GIST_DESCRIPTION', 'the description for this gist'), 'public': False, 'files': { - 'dpaste.de_snippet.py': { + getattr(settings, 'DPASTE_DEFAULT_GIST_NAME', 'dpaste.de_snippet.py'): { 'content': snippet.content, } }