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('---------------------------------------------------------------------')