2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-10-07 13:36:21 +00:00

Remove error message when the default_user.csv doesn't exist.

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/parkinglot@680 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
Likun Zhang
2010-01-30 01:37:43 +00:00
parent 5dfaa5936b
commit 335fab6b45

View File

@@ -108,6 +108,8 @@ class BindCmdInterpreter(Cmd):
print(data + ' login as ' + row[0] )
bsuccess = True
break
except IOError as e:
pass
except Exception as e:
print(e)
finally: