k4m4 / dymerge

🔓 A dynamic dictionary merger for successful dictionary based attacks.
https://nikolaskama.me/dymergeproject
MIT License
217 stars 51 forks source link

print info bug #12

Open rohitbhure65 opened 1 year ago

rohitbhure65 commented 1 year ago

──(---㉿kali)-[~/HACKLAB-master/tools/dymerge] └─$ python dymerge.py File "/home/rohit/HACKLAB-master/tools/dymerge/dymerge.py", line 25 print info ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?

bug find by @vrcoderyt Screenshot from 2023-04-11 22-37-09

crmaxx commented 1 year ago

wrong python version?

rohitbhure65 commented 1 year ago

wrong python version?

No bro i also tried with python3

crmaxx commented 1 year ago

in python3

Python 3.11.2 (main, Feb 16 2023, 03:07:35) [Clang 14.0.0 (clang-1400.0.29.202)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> print "123"
  File "<stdin>", line 1
    print "123"
    ^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?

in python2

Python 2.7.17 (default, Feb 27 2021, 15:10:58) [GCC 7.5.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print "123"
123
rohitbhure65 commented 1 year ago

ok