Explorar el Código

Fix wrapping.

pull/24/head
Ben Kurtovic hace 10 años
padre
commit
246c987f72
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      app.fcgi

+ 3
- 1
app.fcgi Ver fichero

@@ -1,9 +1,10 @@
#! /data/project/copyvios/env/bin/python
# -*- coding: utf-8 -*-

from time import asctime
from functools import wraps
from logging import DEBUG
from logging.handlers import TimedRotatingFileHandler
from time import asctime

from flask import Flask, g, request
from flask.ext.mako import MakoTemplates, render_template, TemplateError
@@ -20,6 +21,7 @@ app.logger.addHandler(TimedRotatingFileHandler(
app.logger.info(u"Flask server started " + asctime())

def debug_exceptions(func):
@wraps(func)
def inner(*args, **kwargs):
try:
return func(*args, **kwargs)


Cargando…
Cancelar
Guardar