Moibe commited on
Commit
b9e94d0
·
1 Parent(s): 27fd945

Print Ambiente Stripe

Browse files
Files changed (1) hide show
  1. autenticacion.py +2 -1
autenticacion.py CHANGED
@@ -13,7 +13,8 @@ def defineAmbiente(env):
13
  webhook == bridges.webhook_sandbox
14
  else:
15
  print("Entorno remoto listo...")
16
- if os.getenv("ambiente_stripe") == 'prod':
 
17
  llave = os.getenv("STRIPE_KEY_PROD") #Acceso a HF
18
  webhook = os.getenv("STRIPE_WEBHOOK_SECRET_PROD")
19
  else:
 
13
  webhook == bridges.webhook_sandbox
14
  else:
15
  print("Entorno remoto listo...")
16
+ if os.getenv("ambiente_stripe") == 'prod':
17
+ print("Ambiente stripe es: ", os.getenv("ambiente_stripe"))
18
  llave = os.getenv("STRIPE_KEY_PROD") #Acceso a HF
19
  webhook = os.getenv("STRIPE_WEBHOOK_SECRET_PROD")
20
  else: