fixed another python3.6ism

Wed, 31 Jan 2018 14:57:09 +0200

author
Santeri Piippo
date
Wed, 31 Jan 2018 14:57:09 +0200
changeset 43
d7c015d8c6c0
parent 42
be50d98d3668
child 44
464f5e8d57ab

fixed another python3.6ism

tests/subfiles.py file | annotate | diff | comparison | revisions
--- a/tests/subfiles.py	Wed Jan 31 14:54:58 2018 +0200
+++ b/tests/subfiles.py	Wed Jan 31 14:57:09 2018 +0200
@@ -6,7 +6,7 @@
 ini_path = Path(dirname(__file__)) / 'library-standards.ini'
 library_standards = ConfigParser()
 
-with open(ini_path) as file:
+with open(str(ini_path)) as file:
     library_standards.read_file(file)
 
 def determinant_test(model):

mercurial