Procházet zdrojové kódy

Fix background URL generation

master
Ben Kurtovic před 2 roky
rodič
revize
23663afbe2
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      copyvios/background.py

+ 2
- 1
copyvios/background.py Zobrazit soubor

@@ -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,


Načítá se…
Zrušit
Uložit