Likewise in trunk..

This commit is contained in:
Andrew Resch 2009-10-09 00:40:46 +00:00
parent 844f98db04
commit 11c0e9a304
2 changed files with 2 additions and 0 deletions

View File

@ -124,6 +124,7 @@ class AuthManager(component.Component):
if line.startswith("#"):
# This is a comment line
continue
line = line.strip()
try:
lsplit = line.split(":")
except Exception, e:

View File

@ -301,6 +301,7 @@ def get_localhost_auth():
if line.startswith("#"):
# This is a comment line
continue
line = line.strip()
try:
lsplit = line.split(":")
except Exception, e: