revert toolbox
Browse files- toolbox.py +6 -3
toolbox.py
CHANGED
@@ -237,10 +237,13 @@ def get_conf(*args):
|
|
237 |
except: r = getattr(importlib.import_module('config'), arg)
|
238 |
res.append(r)
|
239 |
# 在读取API_KEY时,检查一下是不是忘了改config
|
240 |
-
|
|
|
241 |
"(如果您刚更新过代码,请确保旧版config_private文件中没有遗留任何新增键值)"
|
242 |
return res
|
243 |
|
244 |
def clear_line_break(txt):
|
245 |
-
|
246 |
-
|
|
|
|
|
|
237 |
except: r = getattr(importlib.import_module('config'), arg)
|
238 |
res.append(r)
|
239 |
# 在读取API_KEY时,检查一下是不是忘了改config
|
240 |
+
if arg=='API_KEY' and len(r) != 51:
|
241 |
+
assert False, "正确的API_KEY密钥是51位,请在config文件中修改API密钥, 添加海外代理之后再运行。" + \
|
242 |
"(如果您刚更新过代码,请确保旧版config_private文件中没有遗留任何新增键值)"
|
243 |
return res
|
244 |
|
245 |
def clear_line_break(txt):
|
246 |
+
txt = txt.replace('\n', ' ')
|
247 |
+
txt = txt.replace(' ', ' ')
|
248 |
+
txt = txt.replace(' ', ' ')
|
249 |
+
return txt
|