Skip to content

Commit 6f87eb8

Browse files
rpalaciosgstsewd
authored andcommitted
Hacer downgrade, cambiar string format compatible con python3.4 en adelante
1 parent 0e25d8f commit 6f87eb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# in a prominent link. Don't forget the protocol (http/https)!
2626
deploy_site = os.environ.get('NIKOLA_DEPLOY')
2727
if deploy_site:
28-
SITE_URL = f'https://{deploy_site}'
28+
SITE_URL = 'https://{0}'.format(deploy_site)
2929
else:
3030
SITE_URL = 'http://localhost:8000/'
3131
# This is the URL where Nikola's output will be deployed.

0 commit comments

Comments
 (0)