aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/test_node.py
diff options
context:
space:
mode:
authorDaniel Ingram <ingramds@appstate.edu>2018-12-10 15:11:37 -0500
committerDaniel Ingram <ingramds@appstate.edu>2018-12-10 15:11:37 -0500
commit17b55202dae8d6e21d2490de89b345c55f7694c0 (patch)
tree1ad96c27d8804178e08c3b2a17afb24295a7b951 /test/functional/test_framework/test_node.py
parent1b89074ae27ce123adbeed57343deaef13c14f81 (diff)
downloadbitcoin-17b55202dae8d6e21d2490de89b345c55f7694c0.tar.xz
Compare to None with is/is not
Diffstat (limited to 'test/functional/test_framework/test_node.py')
-rwxr-xr-xtest/functional/test_framework/test_node.py2
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.