typo
authorEdouard TISSERANT <edouard.tisserant@gmail.com>
Mon, 07 Dec 2009 22:06:04 +0100
changeset 476 2e09d2e86a35
parent 475 9ca03fdff80f
child 477 fd9625f6e92a
typo
dialogs/ForceVariableDialog.py
--- a/dialogs/ForceVariableDialog.py	Mon Dec 07 21:36:38 2009 +0100
+++ b/dialogs/ForceVariableDialog.py	Mon Dec 07 22:06:04 2009 +0100
@@ -41,9 +41,9 @@
             return None
     return get_function
 
-getinteger = gen_check_function(int)
-getfloat = gen_check_function(float)
-getstring = gen_check_function(str)
+getinteger = gen_get_function(int)
+getfloat = gen_get_function(float)
+getstring = gen_get_function(str)
 
 GetTypeValue = {"BOOL": lambda x: {"TRUE": True, "FALSE": False}.get(x, None),
                 "SINT": getinteger,