Update 'client.py'
This commit is contained in:
parent
15059c971c
commit
702432c92a
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ class client():
|
|||
if len(argv) == 4: k = argv[3].encode()
|
||||
else:
|
||||
k = Fernet.generate_key()
|
||||
print(k).decode()
|
||||
print(k.decode())
|
||||
self.f = Fernet(k)
|
||||
self.s.connect((argv[1], int(argv[2])))
|
||||
|
||||
|
|
Loading…
Reference in a new issue