1
0
mirror of https://github.com/Tygs/0bin.git synced 2023-08-10 21:13:00 +03:00

Expired pastes are removed from localStorage

This commit is contained in:
sam
2012-05-22 17:40:57 +02:00
parent 470194806e
commit a824bc2a21
4 changed files with 21 additions and 4 deletions

View File

@ -117,7 +117,6 @@ def display_paste(paste_id):
raise ValueError()
except (TypeError, ValueError):
#abort(404, u"This paste doesn't exist or has expired")
return error404(ValueError)
context = {'paste': paste, 'keep_alive': keep_alive}
@ -137,7 +136,7 @@ def server_static(filename):
def get_app(debug=None, settings_file='', compressed_static=None):
"""
Return a tuple (settings, app) configured using passed options and
Return a tuple (settings, app) configured using passed parameters and/or
a setting file.
"""
if settings_file: