remove confusing EOF stderr message

This commit is contained in:
Jean-Francois Dockes 2010-09-08 09:55:43 +02:00
parent 5dc26f1524
commit 3cfc412531

View File

@ -24,7 +24,8 @@ class RclExecM:
def readparam(self):
s = sys.stdin.readline()
if s == '':
self.rclog(": EOF on input", 1, 0)
sys.exit(0)
# self.rclog(": EOF on input", 1, 0)
s = s.rstrip("\n")