Commit 1e0ce969 authored by Guido van Rossum's avatar Guido van Rossum

Fix variable reference in LOG message when 'import pwd' fails.

parent 37170a17
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
"""Start the server storage. """Start the server storage.
$Id: start.py,v 1.44 2002/09/13 20:57:37 gvanrossum Exp $ $Id: start.py,v 1.45 2002/09/23 01:52:50 gvanrossum Exp $
""" """
from __future__ import nested_scopes from __future__ import nested_scopes
...@@ -53,7 +53,7 @@ def set_uid(arg): ...@@ -53,7 +53,7 @@ def set_uid(arg):
import pwd import pwd
except ImportError: except ImportError:
LOG('ZEO/start.py', INFO, ("Can't set uid to %s." LOG('ZEO/start.py', INFO, ("Can't set uid to %s."
"pwd module is not available." % uid)) "pwd module is not available." % arg))
return return
try: try:
gid = None gid = None
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment