Explorar el Código

Fix background URL generation

master
Ben Kurtovic hace 2 años
padre
commit
23663afbe2
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      copyvios/background.py

+ 2
- 1
copyvios/background.py Ver fichero

@@ -4,6 +4,7 @@ from datetime import datetime, timedelta
from json import loads
import random
import re
import urllib

from earwigbot import exceptions
from flask import g
@@ -52,7 +53,7 @@ def _build_url(screen, filename, url, imgwidth, imgheight):
if width >= imgwidth:
return url
url = url.replace("/commons/", "/commons/thumb/")
return url + "/" + str(width) + "px-" + filename
return "%s/%dpx-%s" % (url, width, urllib.quote(filename))

_BACKGROUNDS = {
"potd": _get_fresh_potd,


Cargando…
Cancelar
Guardar