Browse Source

Fix background URL generation

master
Ben Kurtovic 2 years ago
parent
commit
23663afbe2
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      copyvios/background.py

+ 2
- 1
copyvios/background.py View File

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


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


_BACKGROUNDS = { _BACKGROUNDS = {
"potd": _get_fresh_potd, "potd": _get_fresh_potd,


Loading…
Cancel
Save