mirror of
https://github.com/LionSec/katoolin.git
synced 2026-04-25 17:05:57 +03:00
[GH-ISSUE #306] NameError: name 'raw_input' is not defined #254
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/katoolin-LionSec#254
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @6a6ygd on GitHub (Dec 7, 2021).
Original GitHub issue: https://github.com/LionSec/katoolin/issues/306
I installed the program just fine but when I try to launch it, I am met with this message and I do not know how to fix it. I am running Arch Linux in Virtual Box if that helps.
Traceback (most recent call last):
File "/usr/bin/katoolin", line 1294, in main
inicio1()
File "/usr/bin/katoolin", line 41, in inicio1
opcion0 = raw_input("\033[1;36mkat > \033[1;m")
NameError: name 'raw_input' is not defined
@6a6ygd commented on GitHub (Dec 7, 2021):
I fixed it. I used nano to edit line 1294 and line 41 from saying raw_input to saying input. apparently raw_input() was renamed to input() in python3. Anyways I just edited those lines of code and I've got it working just fine now.