From 7f27b6c0e0f708d9a1818950f69cbe933f6ef1c9 Mon Sep 17 00:00:00 2001 From: Cesar Carvalho Date: Mon, 9 Dec 2019 09:40:16 -0300 Subject: [PATCH] =?UTF-8?q?Altera=C3=A7=C3=B5es=20no=20script=20de=20verif?= =?UTF-8?q?icar=20commits=20entre=203.1.x=20e=20master?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/check_commits.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check_commits.py b/scripts/check_commits.py index f34c6f0c6..7927c3fcd 100644 --- a/scripts/check_commits.py +++ b/scripts/check_commits.py @@ -18,10 +18,10 @@ commits_master = [commit.replace('\r', '') for commit in commits_master] for c, s in commits_3_1_x: # retira os \r para evitar bugs c = c.replace('\r', '') - if c not in commits_master: + if (c not in commits_master) and ('Release' not in c): print('---------------------------------------------------------------------') print('Data: ' + s['data'][:10]) - print(s['sha'][:7] + '-> ' + c) + print(s['sha'][:7] + ' -> ' + c) print('---------------------------------------------------------------------')