[skip ci] fix bug

判断返回值为空需要使用not而不是xx == ""
This commit is contained in:
寂听 2019-02-13 02:34:09 +08:00 committed by GitHub
parent 0fde45f958
commit 1daf079a18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,7 +84,7 @@ def telegram_push(string, debug=0):
querystring = parse.urlencode({"text": string.encode('utf-8')})
tg_api = os.getenv('TG_API')
group_id = os.getenv('TG_GROUP_ID')
if tg_api == "" or group_id == "":
if not tg_api or not group_id:
if debug:
print("Telegram api key or chat(group) id not found.")
print("You need to set TG_API and TG_GROUP_ID in the environment variable.")