Fixed some typos

This commit is contained in:
Ben 2017-06-15 17:26:57 -05:00 committed by GitHub
parent 35cf6ee70b
commit 1dad9911bd
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ is_windows = sys.platform.startswith('win')
# Console Colors
if is_windows:
# Windows deserve coloring too :D
# Windows deserves coloring too :D
G = '\033[92m' # green
Y = '\033[93m' # yellow
B = '\033[94m' # blue
@ -54,7 +54,7 @@ if is_windows:
colorama.init()
#Now the unicode will work ^_^
except:
print("[!] Error: Coloring libraries not installed ,no coloring will be used [Check the readme]")
print("[!] Error: Coloring libraries not installed, no coloring will be used [Check the readme]")
G = Y = B = R = W = G = Y = B = R = W = ''