diff --git a/hosting/views.py b/hosting/views.py
index a5cea6c9..e0554ebf 100644
--- a/hosting/views.py
+++ b/hosting/views.py
@@ -561,9 +561,8 @@ class PaymentVMView(LoginRequiredMixin, FormView):
             )
 
             # Create a Hosting Bill
-            # variable bill is not used
-            # bill = HostingBill.create(
-            #     customer=customer, billing_address=billing_address)
+            HostingBill.create(
+                 customer=customer, billing_address=billing_address)
 
             # Create Billing Address for User if he does not have one
             if not customer.user.billing_addresses.count():