Skip to content

Commit

Permalink
Add missing blackslash-to-slash convertion to smtio.py (matching Smt2…
Browse files Browse the repository at this point in the history
…Worker::get_id() behavior)

Signed-off-by: Clifford Wolf <clifford@clifford.at>
  • Loading branch information
cliffordwolf committed Feb 6, 2019
1 parent 266511b commit e112d2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/smt2/smtio.py
Expand Up @@ -784,7 +784,7 @@ def get_list(self, expr_list):

def get_path(self, mod, path):
assert mod in self.modinfo
path = path.split(".")
path = path.replace("\\", "/").split(".")

for i in range(len(path)-1):
first = ".".join(path[0:i+1])
Expand Down

0 comments on commit e112d2f

Please sign in to comment.