Fixed file handling of subprocesses

svn: r1660
This commit is contained in:
Don Allingham 2003-06-05 03:33:44 +00:00
parent 93dbf1f130
commit 8b7a9808e8

View File

@ -236,8 +236,9 @@ class RcsVersionControl(VersionControl):
slog = 1 slog = 1
l = [] l = []
w.close() proc.tochild.close()
r.close() proc.fromchild.close()
proc.childerr.close()
return rlist return rlist
def checkin(self,name,comment,binary): def checkin(self,name,comment,binary):