aboutsummaryrefslogtreecommitdiff
path: root/test/util/rpcauth-test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/util/rpcauth-test.py')
-rwxr-xr-xtest/util/rpcauth-test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/util/rpcauth-test.py b/test/util/rpcauth-test.py
index 2456feb102..46e9fbc739 100755
--- a/test/util/rpcauth-test.py
+++ b/test/util/rpcauth-test.py
@@ -18,7 +18,7 @@ class TestRPCAuth(unittest.TestCase):
config_path = os.path.abspath(
os.path.join(os.sep, os.path.abspath(os.path.dirname(__file__)),
"../config.ini"))
- with open(config_path) as config_file:
+ with open(config_path, encoding="utf8") as config_file:
config.read_file(config_file)
sys.path.insert(0, os.path.dirname(config['environment']['RPCAUTH']))
self.rpcauth = importlib.import_module('rpcauth')