plutopluto

git clone https://git.ce9e.org/plutopluto.git

commit
fc9a37525cc6182e25d6adb69897bea837013f99
parent
b1495f907fb33948625bb07624f832ab91c9b01f
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2014-09-25 17:51
pep8

Diffstat

M server.py 4 ++--

1 files changed, 2 insertions, 2 deletions


diff --git a/server.py b/server.py

@@ -4,7 +4,7 @@ import sys
    4     4 from time import mktime, time
    5     5 import argparse
    6     6 
    7    -1 from flask import Flask, request, jsonify, abort, render_template
   -1     7 from flask import Flask, request, jsonify, abort
    8     8 from werkzeug.contrib.cache import SimpleCache
    9     9 
   10    10 import feedparser
@@ -90,7 +90,7 @@ def index():
   90    90 
   91    91 
   92    92 @app.route('/config', methods=['GET'])
   93    -1 def  config():
   -1    93 def config():
   94    94 	return jsonify({
   95    95 		'urls': app.config['URLS']
   96    96 	})