Browse Source

removed trace

frabbit 11 years ago
parent
commit
b4c9f1a931
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/python/_std/Sys.hx

+ 1 - 1
std/python/_std/Sys.hx

@@ -73,7 +73,7 @@ class Sys {
 	}
 
 	public static function getChar( echo : Bool ) : Int {
-		trace(python.lib.Sys.platform);
+
 		var ch = switch (python.lib.Sys.platform) {
 			case x if (StringTools.startsWith(x, "linux") || x =="darwin"):
 				var fd = python.lib.Sys.stdin.fileno();