diff options
-rw-r--r-- | pastepy/pastepy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pastepy/pastepy.py b/pastepy/pastepy.py index 1d43986..472f6e2 100644 --- a/pastepy/pastepy.py +++ b/pastepy/pastepy.py @@ -145,7 +145,7 @@ def view_paste(paste_hash): db_session.add(cache) template = 'full.html' if request.endpoint.endswith('.view_full') else 'view.html' return render_template(template, - title='View paste \u2013 {}'.format(current_app.config['PASTEBIN_NAME'], paste.title or 'Untitled'), + title='View paste \u2013 {}'.format(paste.title or 'Untitled'), hash=paste_hash, date='{} UTC'.format(paste.date.ctime()), nick=paste.nick or 'Anonymous', |