Browse Source

Fix ImageServer API links.

master
Ben Kurtovic 7 years ago
parent
commit
b57a6b362b
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      calefaction/eve/image.py

+ 3
- 3
calefaction/eve/image.py View File

@@ -52,12 +52,12 @@ class ImageServer:


def faction(self, id, width): def faction(self, id, width):
"""Return a URL for a faction logo.""" """Return a URL for a faction logo."""
return self._url + "Alliance/{}_{}.jpg".format(id, width)
return self._url + "Alliance/{}_{}.png".format(id, width)


def inventory(self, id, width): def inventory(self, id, width):
"""Return a URL for an inventory item image.""" """Return a URL for an inventory item image."""
return self._url + "Type/{}_{}.jpg".format(id, width)
return self._url + "Type/{}_{}.png".format(id, width)


def render(self, id, width): def render(self, id, width):
"""Return a URL for ship render image.""" """Return a URL for ship render image."""
return self._url + "Render/{}_{}.jpg".format(id, width)
return self._url + "Render/{}_{}.png".format(id, width)

Loading…
Cancel
Save