aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/Utils.py')
-rw-r--r--Mailman/Utils.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py
index 36c08aaf..fe513c8e 100644
--- a/Mailman/Utils.py
+++ b/Mailman/Utils.py
@@ -266,7 +266,10 @@ def GetPathPieces(envar='PATH_INFO'):
os.environ.get('HTTP_X_FORWARDED_FOR',
os.environ.get('REMOTE_ADDR',
'unidentified origin')))
- syslog('error', 'Warning: Possible malformed path attack domain=%s remote=%s' % get_domain(), remote)
+ syslog('error',
+ 'Warning: Possible malformed path attack domain=%s remote=%s',
+ get_domain(),
+ remote)
return [p for p in path.split('/') if p]
return None