mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-09-13 22:11:50 +02:00
Change '== None' to 'is None'
This commit is contained in:
@@ -109,7 +109,7 @@ def main():
|
||||
match = re.search('^\+\+\+\ (.*?/){%s}(\S*)' % args.p, line)
|
||||
if match:
|
||||
filename = match.group(2)
|
||||
if filename == None:
|
||||
if filename is None:
|
||||
continue
|
||||
|
||||
if args.regex is not None:
|
||||
|
Reference in New Issue
Block a user