summaryrefslogtreecommitdiffstats
path: root/syslogd.py
diff options
context:
space:
mode:
Diffstat (limited to 'syslogd.py')
-rw-r--r--syslogd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/syslogd.py b/syslogd.py
index 69e7dbc3f..4b9bebc2c 100644
--- a/syslogd.py
+++ b/syslogd.py
@@ -43,7 +43,7 @@ class Syslogd:
for fd in list:
msg = fd.recv(50)
- msg = string.replace(foo, chr(0), "\n")
+ msg = string.replace(msg, chr(0), "\n")
if (msg):
output.write(msg)
else: