diff --git a/source/blender/python/api2_2x/Ipocurve.c b/source/blender/python/api2_2x/Ipocurve.c
index 78cd12f299ccaec833bfa20dea3fc8c7bb09502b..c35236dfd7bab79c72932d9e3fda54bdc8a0b0a3 100644
--- a/source/blender/python/api2_2x/Ipocurve.c
+++ b/source/blender/python/api2_2x/Ipocurve.c
@@ -348,7 +348,7 @@ IpoCurve_getName (C_IpoCurve * self)
     "RotX","RotY","RotZ","dRotX","dRotY","dRotZ","SizeX","SizeY","SizeZ",
     "dSizeX","dSizeY","dSizeZ","Layer","Time","ColR","ColG","ColB","ColA"};
     
-  const char * ac_nametab[5] = {"QuatW", "QuatX", "QuatY", "QuatZ","TotIpo"};
+  const char * ac_nametab[5] = {"QuatW", "QuatX", "QuatY", "QuatZ"};
   
   switch (objectType) {
   case ID_OB: {
@@ -371,9 +371,6 @@ IpoCurve_getName (C_IpoCurve * self)
     case 25: case 26: case 27: case 28:
       return PyString_FromString(ac_nametab[trackType-25]);
       break;
-    case 10:
-      return PyString_FromString(ac_nametab[4]);
-      break;
     default:
       return PyString_FromString("Index out of range");
     }
diff --git a/source/blender/python/api2_2x/doc/Ipo.py b/source/blender/python/api2_2x/doc/Ipo.py
index 5309ba61252de8903467a41c3cf1439fb27bfe92..10b5a9b7bdba1fa2215502cd6557d9651ca0e2f6 100644
--- a/source/blender/python/api2_2x/doc/Ipo.py
+++ b/source/blender/python/api2_2x/doc/Ipo.py
@@ -234,7 +234,7 @@ class IpoCurve:
 
   def getName():
     """
-		Returns the name of the ipo curve.This name can be : LocX,LocY,LocZ,dLocX,dLocY,dLocZ,RotX,RotY,RotZ,dRotX,dRotY,dRotZ,SizeX,SizeY,SizeZ,dSizeX,dSizeY,dSizeZ,Layer,Time,ColR,ColG,ColB,ColA,QuatX,QuatY,QuatZ,QuatW or TotIpo. Currently only works with object and action IPO's..
+		Returns the name of the ipo curve. This name can be : LocX,LocY,LocZ,dLocX,dLocY,dLocZ,RotX,RotY,RotZ,dRotX,dRotY,dRotZ,SizeX,SizeY,SizeZ,dSizeX,dSizeY,dSizeZ,Layer,Time,ColR,ColG,ColB,ColA,QuatX,QuatY,QuatZ or QuatW. Currently only works with object and action IPO's..
 		@rtype: string
 		@return: the name of the ipo curve.
     """