Nightbringer21 / fridump

A universal memory dumper using Frida
748 stars 138 forks source link

Missing parentheses in call to 'print' #2

Closed ghost closed 6 years ago

ghost commented 7 years ago

When i try to run fridump, i got an error that says:

P:\Programming\fridump-master>python fridump.py
  File "fridump.py", line 44
    print logo
             ^
SyntaxError: Missing parentheses in call to 'print'

I'm not a python programming expert so i'm not sure why it couldn't print the logo. I'm using Python 3.6.0 on Windows, PIP and Frida are installed. Path environment variable are correctly set

anantshri commented 7 years ago

code is written in python 2 syntax use python 2 to execute it and it will work.

andruwik777 commented 7 years ago

@anantshri , but how can we use fridump with python 2 if frida works only with python 3?

P.S. Also please take a look into the Pull Requests -- seems guys have already fixed this ;)

DummybugStudios commented 6 years ago

I know I'm a little late but frida is available for python2

Nightbringer21 commented 6 years ago

Frida is available both for python2 and python3. I have just pushed an update that is supporting both versions. Let me know if there are any further issues.