Procházet zdrojové kódy

width should be a string

pull/24/head
Ben Kurtovic před 12 roky
rodič
revize
04c7092756
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      toolserver/background.py

+ 1
- 1
toolserver/background.py Zobrazit soubor

@@ -112,4 +112,4 @@ def _build_url(screen, filename, url, imgwidth, imgheight):
if width >= imgwidth:
return url
url = url.replace("/commons/", "/commons/thumb/")
return url + "/" + width + "px-" + filename
return url + "/" + str(width) + "px-" + filename

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