mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-02-02 01:44:40 +00:00
injector: output errors to stderr
This commit is contained in:
parent
5e8b354f9f
commit
803bbef6c6
4
injector
4
injector
@ -28,7 +28,7 @@ for line in f:
|
||||
if line.startswith('#') or line.isspace():
|
||||
continue
|
||||
if line.find('=') == -1:
|
||||
print 'Invalid line: %s' % line
|
||||
sys.stderr.write('Invalid line: %s\n' % line)
|
||||
continue
|
||||
# strip trailing '\n'
|
||||
line = line.rstrip('\n')
|
||||
@ -37,7 +37,7 @@ for line in f:
|
||||
hostname = validate_hostname(entry[0])
|
||||
base64 = validate_b64hash(entry[1], check_uniq=False) # don't require uniqueness
|
||||
except ValidationError, e:
|
||||
print 'validation error: %s: %s' % (e, line)
|
||||
sys.stderr.write('validation error: %s: %s\n' % (e, line))
|
||||
else:
|
||||
# Check for already existed hosts in database to avoid unneeded INSERTs
|
||||
# beacuse they will fail anyway.
|
||||
|
Loading…
x
Reference in New Issue
Block a user