diff options
Diffstat (limited to 'fb')
-rwxr-xr-x | fb | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -72,6 +72,7 @@ def read_stdin(): if not content: sys.exit() tmpfile = Popen('mktemp', stdout=PIPE).communicate()[0] + tmpfile = tmpfile.replace('\n', '') f = open(tmpfile, 'w') f.write(content) f.close() |