diff options
Diffstat (limited to 'backends')
| -rw-r--r-- | backends/smt2/smtio.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/backends/smt2/smtio.py b/backends/smt2/smtio.py index 68783e744..ab20a4af2 100644 --- a/backends/smt2/smtio.py +++ b/backends/smt2/smtio.py @@ -784,7 +784,7 @@ class SmtIo:      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]) | 
