diff --git a/a2tm.py b/a2tm.py index 35c8cb6..23989c5 100755 --- a/a2tm.py +++ b/a2tm.py @@ -30,7 +30,7 @@ if sys.version_info<(3,0): #Function to clear screen def ClearScreen(): if sys.platform == "cygwin": - print (300 * "\n") + os.system("clear") elif os.name == "posix": os.system("clear") elif os.name == "nt":