mirror of https://github.com/n1nj4sec/pupy.git
Fix typo
This commit is contained in:
parent
b46c52ede3
commit
6879714cb4
|
@ -133,12 +133,12 @@ def get_raw_conf(display, conf, obfuscate=False, verbose=False):
|
||||||
|
|
||||||
display(
|
display(
|
||||||
List(available, bullet=Color('+', 'green'),
|
List(available, bullet=Color('+', 'green'),
|
||||||
caption=Success('Required credentials (found))')))
|
caption=Success('Required credentials (found)')))
|
||||||
|
|
||||||
if not_available:
|
if not_available:
|
||||||
display(
|
display(
|
||||||
List(not_available, bullet=Color('-', 'red'),
|
List(not_available, bullet=Color('-', 'red'),
|
||||||
caption=Error('Required credentials (not found))')))
|
caption=Error('Required credentials (not found)')))
|
||||||
|
|
||||||
embedded_credentials = '\n'.join([
|
embedded_credentials = '\n'.join([
|
||||||
'{}={}'.format(credential, repr(credentials[credential])) \
|
'{}={}'.format(credential, repr(credentials[credential])) \
|
||||||
|
|
Loading…
Reference in New Issue