Skip to content

Commit 2404acb

Browse files
authoredMay 3, 2024··
Update main.py - bug fix
1 parent 2bdd2e3 commit 2404acb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎main.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
'''
33
Author: "BenChanlLOL" on github
44
Name: ConCat
5-
Version: 0.0.3
5+
Version: 0.0.4
66
'''
77

88

@@ -19,7 +19,6 @@
1919
port1 = int(input("what port should we connect to? "))
2020
except ValueError as e:
2121
print("Please input a real port")
22-
break
2322
try:
2423
sock.connect((address1, port1))
2524
print("connection established")
@@ -55,7 +54,7 @@
5554
data = sock.recv(1024).decode("utf-8")
5655
print(data)
5756
elif cmd == "version" or "-v":
58-
print("version: 0.0.3")
57+
print("version: 0.0.4")
5958
elif cmd == "troubleshoot":
6059
print("If you are attempting to ssh using this client a BrokenPipeError is a indicator of wrong password"
6160
"When Using SSH a small delay after the first message will occur, then echo the SSH version. "

0 commit comments

Comments
 (0)
Please sign in to comment.