From 39fc10d922b915a260c708dd661ad26d447bcbd8 Mon Sep 17 00:00:00 2001 From: yaokai13 Date: Tue, 23 Mar 2021 10:21:54 +0800 Subject: [PATCH] fix bug --- core/check_meta_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/check_meta_service.py b/core/check_meta_service.py index 0e568aa..f310d16 100644 --- a/core/check_meta_service.py +++ b/core/check_meta_service.py @@ -74,7 +74,7 @@ class CheckMetaPull(object): fetch_result = os.popen(fetch_cmd).read() log.info(fetch_result) branch_result = os.popen(branch_cmd).readlines() - if "thispr" in branch_result[0]: + if branch_result: log.info(branch_result) break else: -- Gitee