Browse Source

it's Os not Sys

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

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

@@ -32,7 +32,7 @@ class Sys {
 	}
 	}
 
 
 	public static function putEnv( s : String, v : String ) : Void {
 	public static function putEnv( s : String, v : String ) : Void {
-		python.lib.Sys.putenv(s, v);
+		python.lib.Os.putenv(s, v);
 		environ.set(s, v);
 		environ.set(s, v);
 	}
 	}