Make get_cwd love debugging

This commit is contained in:
Chris Jones 2008-05-22 19:50:25 +01:00
parent 9c60a60484
commit 5927ddc51a
1 changed files with 3 additions and 1 deletions

View File

@ -394,7 +394,9 @@ text/plain
""" Return the current working directory of the subprocess. """ Return the current working directory of the subprocess.
This function requires OS specific behaviours This function requires OS specific behaviours
""" """
return (pid_get_cwd(self._pid)) cwd = pid_get_cwd (self._pid)
dbg ('get_cwd found: %s'%cwd)
return (cwd)
def reconfigure_vte (self): def reconfigure_vte (self):
# Set our emulation # Set our emulation