summaryrefslogtreecommitdiff
path: root/ml_exp/read_qm7_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'ml_exp/read_qm7_data.py')
-rw-r--r--ml_exp/read_qm7_data.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ml_exp/read_qm7_data.py b/ml_exp/read_qm7_data.py
index 06de44b02..81be05a17 100644
--- a/ml_exp/read_qm7_data.py
+++ b/ml_exp/read_qm7_data.py
@@ -35,7 +35,7 @@ def read_nc_data(data_path):
data_path: path to the data directory.
"""
fname = 'periodic_table_of_elements.txt'
- with open(''.join([data_path, '\\', fname]), 'r') as infile:
+ with open(''.join([data_path, '/', fname]), 'r') as infile:
temp_lines = infile.readlines()
del temp_lines[0]