aboutsummaryrefslogtreecommitdiffstats
path: root/nfvbench/credentials.py
diff options
context:
space:
mode:
Diffstat (limited to 'nfvbench/credentials.py')
-rw-r--r--nfvbench/credentials.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nfvbench/credentials.py b/nfvbench/credentials.py
index 7562896..7c48879 100644
--- a/nfvbench/credentials.py
+++ b/nfvbench/credentials.py
@@ -138,7 +138,7 @@ class Credentials(object):
if openrc_file:
if isinstance(openrc_file, str):
if os.path.exists(openrc_file):
- with open(openrc_file) as rc_file:
+ with open(openrc_file, encoding="utf-8") as rc_file:
self.__parse_openrc(rc_file)
else:
LOG.error('Error: rc file does not exist %s', openrc_file)