def fileDownload( f ):
''' Decorator to basic exception handling on function. '''
@wraps( f )
def wrapped( *args, **kwargs ):
web.header( 'Content-Type', 'application/octet-stream' )
return f( *args, **kwargs )
return wrapped
#==============================================================================
# PAGES
#==============================================================================
评论列表
文章目录