Skip to content

Commit 09fdbcf

Browse files
authored
Merge pull request #206 from int3rlop3r/patch-1
Pass the 'level' arg while calling self._dbg
2 parents 5c7c625 + 60536c2 commit 09fdbcf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Exscript/servers/telnetd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ def _handle_connection(self, conn):
7272
if response:
7373
conn.send(response.encode('utf8'))
7474
except Exception as err:
75-
self._dbg("_handle_connection(): ", err)
75+
self._dbg(1, "_handle_connection(): %s" % err)
7676
finally:
7777
conn.close()

0 commit comments

Comments
 (0)