Skip to content

Commit

Permalink
Parsing valid E+ versions on Windows has been fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelduchesne committed Aug 30, 2021
1 parent 2d11984 commit 791b37d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archetypal/eplus_interface/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def valid_idd_paths(self, value):
else:
_valid_paths = {}
for iddname in iddnames:
match = re.search(r"V(\d-\d-\d)", str(iddname))
match = re.search(".+V(\d-\d-\d)", str(iddname))
if match is None:
# match the Idd file contained in basedir
match = re.search(r"([\d]-[\d]-[\d])", iddname)
Expand Down

0 comments on commit 791b37d

Please sign in to comment.