diff --git a/commerce_coupon.module b/commerce_coupon.module
index 66a6a7e..53fb313 100644
--- a/commerce_coupon.module
+++ b/commerce_coupon.module
@@ -1053,11 +1053,7 @@ function commerce_coupon_commerce_coupon_discount_value_display_alter(&$text, $d
           break;
 
         case 'percentage':
-          $rate = $offer_wrapper->commerce_percentage->value();
-          if ($rate < 1) {
-            $rate = $rate * 100;
-          }
-          $text = $rate . '% ' . t('off order');
+          $text = $offer_wrapper->commerce_percentage->value() . '% ' . t('off order');
 
           break;
 
