Remove debug output
This commit is contained in:
parent
c3977449c3
commit
0a10d95252
1 changed files with 1 additions and 2 deletions
3
index.py
3
index.py
|
@ -35,8 +35,7 @@ def check_oldpw(accountname, oldpass):
|
|||
oldhash = m.group(1)
|
||||
hashtype = m.group(2)
|
||||
salt = m.group(3)
|
||||
except CalledProcessError as e:
|
||||
print(e)
|
||||
except CalledProcessError:
|
||||
return False
|
||||
|
||||
opensslargs = ['openssl', 'passwd', '-' + hashtype, '-salt', salt, oldpass]
|
||||
|
|
Loading…
Reference in a new issue