mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-10 05:57:59 +01: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)
|
match = re.search('^\+\+\+\ (.*?/){%s}(\S*)' % args.p, line)
|
||||||
if match:
|
if match:
|
||||||
filename = match.group(2)
|
filename = match.group(2)
|
||||||
if filename == None:
|
if filename is None:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if args.regex is not None:
|
if args.regex is not None:
|
||||||
|
|||||||
Reference in New Issue
Block a user