]> git.lizzy.rs Git - nhentai.git/blobdiff - nhentai/constant.py
Merge pull request #189 from mobrine1/mobrine1-patch-1
[nhentai.git] / nhentai / constant.py
index 8ec89f7e87ade92e21b49ada38ddee205bb435e8..bce3604f02f6639e887bd66df2625c0ff9e95236 100644 (file)
@@ -1,6 +1,7 @@
 # coding: utf-8
 from __future__ import unicode_literals, print_function
 import os
+import copy
 import tempfile
 
 try:
@@ -29,9 +30,10 @@ NHENTAI_HOME = os.path.join(os.getenv('HOME', tempfile.gettempdir()), '.nhentai'
 NHENTAI_HISTORY = os.path.join(NHENTAI_HOME, 'history.sqlite3')
 NHENTAI_CONFIG_FILE = os.path.join(NHENTAI_HOME, 'config.json')
 
+
 CONFIG = {
-    'proxy': {},
+    'proxy': {'http': '', 'https': ''},
     'cookie': '',
     'language': '',
+    'template': '',
 }
-