Skip to content

Commit

Permalink
Potential fix for #973
Browse files Browse the repository at this point in the history
  • Loading branch information
stasinopoulos committed Nov 6, 2024
1 parent 4857518 commit 05b3b51
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions src/thirdparty/beautifulsoup/beautifulsoup.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,11 @@
except NameError:
from sets import Set as set

try:
import sgmllib
except ImportError:
from src.utils import sgmllib
from src.utils import sgmllib
# try:
# import sgmllib
# except ImportError:
# from src.utils import sgmllib

try:
import markupbase
Expand Down
2 changes: 1 addition & 1 deletion src/utils/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def sys_argv_errors():
DESCRIPTION = "The command injection exploiter"
AUTHOR = "Anastasios Stasinopoulos"
VERSION_NUM = "4.0"
REVISION = "108"
REVISION = "109"
STABLE_RELEASE = False
VERSION = "v"
if STABLE_RELEASE:
Expand Down

0 comments on commit 05b3b51

Please sign in to comment.