diff options
author | Daniel Ingram <ingramds@appstate.edu> | 2018-12-10 15:11:37 -0500 |
---|---|---|
committer | Daniel Ingram <ingramds@appstate.edu> | 2018-12-10 15:11:37 -0500 |
commit | 17b55202dae8d6e21d2490de89b345c55f7694c0 (patch) | |
tree | 1ad96c27d8804178e08c3b2a17afb24295a7b951 /test/functional/test_framework/test_node.py | |
parent | 1b89074ae27ce123adbeed57343deaef13c14f81 (diff) |
Compare to None with is/is not
Diffstat (limited to 'test/functional/test_framework/test_node.py')
-rwxr-xr-x | test/functional/test_framework/test_node.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index ebae3faffc..031a8824b1 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -68,7 +68,7 @@ class TestNode(): self.rpc_timeout = timewait self.binary = bitcoind self.coverage_dir = coverage_dir - if extra_conf != None: + if extra_conf is not None: append_config(datadir, extra_conf) # Most callers will just need to add extra args to the standard list below. # For those callers that need more flexibility, they can just set the args property directly. |