Skip to content

Commit 5df0592

Browse files
committed
minor changes
1 parent 2ce7e42 commit 5df0592

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/ctfsolver/src/manager_connections.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ def connect(self, *args, **kwargs) -> None:
2828
If the connection type is local, it starts a process with the file provided.
2929
"""
3030
if self.conn_type == "remote" and self.url and self.port:
31-
self.conn = pwn.remote(self.url, self.port)
31+
self.conn = self.pwn.remote(self.url, self.port)
3232
elif self.conn_type == "local" and self.file:
33-
self.conn = pwn.process(str(self.challenge_file))
33+
self.conn = self.pwn.process(str(self.challenge_file))
3434

3535
def recv_menu(self, number=1, display=False, save=False):
3636
"""

0 commit comments

Comments
 (0)