git.fiddlerwoaroof.com
Browse code

Added line to marrow_config, enable title getter

fiddlerwoaroof authored on 24/03/2015 03:30:19
Showing 1 changed files
... ...
@@ -1,5 +1,5 @@
1
-import os
2
-import base64
1
+from src.marrow.titlegetter import titlegetter
2
+from src.marrow.titlegetter import nytimes
3 3
 
4 4
 class config:
5 5
     debug = True
... ...
@@ -8,4 +8,5 @@ class config:
8 8
     user = "<theDatabaseUser>"
9 9
     password = "<theDatabasePassword>"
10 10
     host = "localhost"
11
+    titlegetter = titlegetter.TitleGetter()
11 12