Commit 02afaadf authored by Patrick Shriwise's avatar Patrick Shriwise
Browse files

Resolve path before passing to str

parent 95ccb833
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -108,7 +108,7 @@ class PyGriffin:
        else:
                p = subprocess.Popen(cmd,
                                     universal_newlines=True,
                                     cwd=str(cwd))
                                     cwd=str(cwd.resolve()))
        p.wait()
        return p.returncode