diff --git a/sites/all/modules/uuid_features/includes/uuid_term.features.inc b/sites/all/modules/uuid_features/includes/uuid_term.features.inc
index 2abcdd3..2c6a122 100644
--- a/sites/all/modules/uuid_features/includes/uuid_term.features.inc
+++ b/sites/all/modules/uuid_features/includes/uuid_term.features.inc
@@ -145,7 +145,8 @@ function uuid_term_features_rebuild($module) {
           }
         }
 
-        $ret = taxonomy_term_save($term /* TODO Term object replaces array $data */);
+        $term = (object) $data;
+        $ret = taxonomy_term_save($term);
       }
 
     }
