Skip to content

Commit

Permalink
Prepare 0.9.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebFenton committed Sep 25, 2016
1 parent 8b0c89a commit 33984f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apkid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
'''

__title__ = 'apkid'
__version__ = '0.9.3'
__version__ = '0.9.4'
__author__ = 'Caleb Fenton & Tim Strazzere'
__license__ = 'GPL & Commercial'
__copyright__ = 'Copyright (C) 2016 RedNaga'
Expand Down
7 changes: 4 additions & 3 deletions apkid/apkid.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import shutil
import tempfile
import zipfile
import traceback

import yara

Expand Down Expand Up @@ -83,9 +84,9 @@ def scan(self):
self.print_matches(key_path, matches)
shutil.rmtree(td)
except Exception as e:
import traceback
print "error extracting %s: %s" % (filename, e)
traceback.print_exc()
tb = traceback.format_exc()
print "error extracting %s: %s\n%s" % (filename, e, tb)


except yara.Error as e:
print "error scanning: %s" % e
Expand Down

0 comments on commit 33984f4

Please sign in to comment.