Skip to content

Commit

Permalink
removing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AlessandroZ committed Dec 20, 2016
1 parent 49e9ae1 commit ca64d7a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Windows/lazagne/softwares/memory/keepass.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ def run(self, software_name = None):

if values:
pwdFound = [values]
# try:
with libkeepass.open(values['Database'], password=values['Password'], keyfile=values['KeyFilePath']) as kdb:
pwdFound += kdb.to_dic()
# except:
# pass
try:
with libkeepass.open(values['Database'], password=values['Password'], keyfile=values['KeyFilePath']) as kdb:
pwdFound += kdb.to_dic()
except:
pass

return pwdFound

0 comments on commit ca64d7a

Please sign in to comment.