wendlers / mpfshell

A simple shell based file explorer for ESP8266 Micropython based devices ⛺
MIT License
396 stars 84 forks source link

telnet skip login if no username given #21

Closed mhoffma closed 7 years ago

mhoffma commented 7 years ago

if no login name password is given is it possible to just setup your nice connection. I have a very simple local area telnet server that I would like to work with your tool. my server works with telnet but your tool is much better in that it has all of the other command stuff for getting and putting files.

diff --git a/mp/contelnet.py b/mp/contelnet.py index 55c726e..9e328fc 100644 --- a/mp/contelnet.py +++ b/mp/contelnet.py @@ -42,6 +42,9 @@ class ConTelnet(ConBase): self.read = self.__read3

     self.tn = telnetlib.Telnet(ip)
wendlers commented 7 years ago

Merged in the pull request with that changes.