aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpyAggr3g470r.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index e796e9cf..254562f9 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -34,7 +34,6 @@ import calendar
import threading
from collections import Counter
-from cherrypy.lib.static import serve_file
import utils
import feedgetter
@@ -1251,4 +1250,4 @@ if __name__ == '__main__':
thread_watch_base = threading.Thread(None, root.watch_base_classic, None, ())
thread_watch_base.setDaemon(True)
thread_watch_base.start()
- cherrypy.quickstart(root, config=path) \ No newline at end of file
+ cherrypy.quickstart(root, config=path)
bgstack15