fix python3 raw input

This commit is contained in:
David Kennedy 2020-02-03 19:58:42 -05:00
parent fe69551c41
commit 55ba216a71
3 changed files with 8 additions and 1 deletions

View file

@ -5,6 +5,8 @@ version 8.0.2
* fix an issue on harvester file not defined (python 3 compat)
* add a simple install for setoolkit (setup.py)
* teensy remove old path generation location /usr/share/set to /usr/share/setoolkit
* fixed raw_input issue for python3
* changed env variable to python3
~~~~~~~~~~~~~~~~
version 8.0.1

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# coding=utf-8
import os
import re

View file

@ -14,6 +14,11 @@ import socket
from src.core.setcore import *
from src.core.menu import text
try:
raw_input
except:
raw_input = input
ipaddr = ""
me = mod_name()
#