[Zodb-checkins] CVS: ZODB3/ZEO - start.py:1.45
Guido van Rossum
guido@python.org
Sun, 22 Sep 2002 21:52:50 -0400
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv24293
Modified Files:
start.py
Log Message:
Fix variable reference in LOG message when 'import pwd' fails.
=== ZODB3/ZEO/start.py 1.44 => 1.45 ===
--- ZODB3/ZEO/start.py:1.44 Fri Sep 13 16:57:37 2002
+++ ZODB3/ZEO/start.py Sun Sep 22 21:52:50 2002
@@ -53,7 +53,7 @@
import pwd
except ImportError:
LOG('ZEO/start.py', INFO, ("Can't set uid to %s."
- "pwd module is not available." % uid))
+ "pwd module is not available." % arg))
return
try:
gid = None