Skip to content

Commit 0b8a9e9

Browse files
authored
Merge pull request #6 from armandoquintananieves/master
Fix Bug on line 801
2 parents ddc5f00 + 8773e6d commit 0b8a9e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

getsploit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -798,10 +798,10 @@ def main():
798798
outputTable.add_rows(tableRows)
799799
if pythonVersion < 3.0:
800800
# Just pass non-ascii
801-
print(outputTable.draw().decode('ascii', 'ignore'))
801+
print(outputTable.draw().encode('ascii', 'ignore'))
802802
else:
803803
# Any better solution here?
804804
print(outputTable.draw().encode('ascii', 'ignore').decode())
805805

806806
if __name__ == '__main__':
807-
main()
807+
main()

0 commit comments

Comments
 (0)