From b1499b75233e8cd2c1848ccd2ba4cb26c555140e Mon Sep 17 00:00:00 2001
From: Zac Medico <zmedico@gentoo.org>
Date: Tue, 21 Sep 2010 19:56:29 -0700
Subject: [PATCH] In EbuildIpc._receive_reply(), close the input_file when
 finished.

---
 bin/ebuild-ipc.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/bin/ebuild-ipc.py b/bin/ebuild-ipc.py
index f8ec881c8..45d71202e 100755
--- a/bin/ebuild-ipc.py
+++ b/bin/ebuild-ipc.py
@@ -153,6 +153,8 @@ class EbuildIpc(object):
 					"ebuild-ipc: %s\n" % (e,),
 					level=logging.ERROR, noiselevel=-1)
 
+		input_file.close()
+
 		retval = 2
 
 		if not buf:
-- 
2.26.2