diff --git a/countries/commerce_eu_vat_fr/commerce_eu_vat_fr.install b/countries/commerce_eu_vat_fr/commerce_eu_vat_fr.install
index 6ccc248..b8e9656 100644
--- a/countries/commerce_eu_vat_fr/commerce_eu_vat_fr.install
+++ b/countries/commerce_eu_vat_fr/commerce_eu_vat_fr.install
@@ -5,15 +5,17 @@
  */
 function commerce_eu_vat_fr_update_7001() {
   $query = new EntityFieldQuery;
-  $query->entityCondition('entity_type', 'commerce_product')
-    ->fieldCondition('commerce_fr_vat', 'gb_super_reduced');
-  
-  $result = $query->execute()
-  $product_ids = array_keys($result['commerce_product']);
-  foreach ($product_ids as $product_id) {
-    $product = new StdClass;
-    $product->product_id = $product_id;
-    $product->commerce_fr_vat[LANGUAGE_NONE][0] = 'fr_super_reduced';
-    field_attach_update('commerce_product', $product);
+  $query
+    ->entityCondition('entity_type', 'commerce_product')
+    ->fieldCondition('commerce_fr_vat', 'value', 'gb_super_reduced');
+  $result = $query->execute();
+  if ($result) {
+    $product_ids = array_keys($result['commerce_product']);
+    foreach ($product_ids as $product_id) {
+      $product = new StdClass;
+      $product->product_id = $product_id;
+      $product->commerce_fr_vat[LANGUAGE_NONE][0] = 'fr_super_reduced';
+      field_attach_update('commerce_product', $product);
+    }
   }
 }
