Fixes printing issue

This commit is contained in:
sloumdrone 2019-09-09 20:28:03 -07:00
parent 1dd32afb71
commit fea430485f
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ func Visit(addr, openhttp string) (View, error) {
c.Stdin = os.Stdin
c.Stdout = os.Stdout
c.Stderr = os.Stderr
fmt.Print("\033[2;1H")
fmt.Print("\033[2J\033[0;0H")
c.Run()
return View{}, fmt.Errorf("Telnet session terminated")
}