Skip to content

Commit

Permalink
do not use pyasn1 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Bachmann committed Nov 24, 2017
1 parent 22fff25 commit 11ed138
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions androguard/decompiler/decompiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,8 +582,8 @@ def __init__(self, vm, vmx, jadx="jadx", keepfiles=False):
x = Popen(cmd, stdout=PIPE, stderr=PIPE)
# FIXME should be written somewhere...
stdout, stderr = x.communicate()
print(stderr)
print(stdout)
print(stderr.decode("UTF-8"))
print(stdout.decode("UTF-8"))

if x.returncode != 0:
rrmdir(tmpfolder)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
data_prefix = os.path.join(sys.prefix, 'share', 'androguard')

# There is a bug in pyasn1 0.3.1, 0.3.2 and 0.3.3, so do not use them!
install_requires = ['pyasn1!=0.3.1,!=0.3.2,!=0.3.3',
install_requires = ['pyasn1!=0.3.1,!=0.3.2,!=0.3.3,!=0.4.1',
'future',
'networkx',
'pygments',
Expand Down

0 comments on commit 11ed138

Please sign in to comment.