X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Ffilewriter.py;h=582453026931e55a52102d2d35d80be10ad3a670;hb=391f5ec09a119131dc846b796ca791f4cecc69e4;hp=6f5da4f0d8314c5aeecc0c5a216b7b37f9b6db23;hpb=17c5cab4eb8d5181ec7a81267a4e2e6b43c0fc65;p=dak.git diff --git a/daklib/filewriter.py b/daklib/filewriter.py index 6f5da4f0..58245302 100644 --- a/daklib/filewriter.py +++ b/daklib/filewriter.py @@ -86,7 +86,7 @@ class BaseFileWriter(object): out_filename = "{0}{1}.new".format(path, suffix) if cmd is not None: with open(in_filename, 'r') as in_fh, open(out_filename, 'w') as out_fh: - check_call(cmd, stdin=in_fh, stdout=out_fh) + check_call(cmd, stdin=in_fh, stdout=out_fh, close_fds=True) self.rename("{0}{1}".format(path, suffix)) def close(self):