From b57a6b362b02c859c02b3eb600b092c8fe0b9dfb Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Thu, 29 Dec 2016 02:33:27 -0500 Subject: [PATCH] Fix ImageServer API links. --- calefaction/eve/image.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/calefaction/eve/image.py b/calefaction/eve/image.py index 53004b5..a9d4608 100644 --- a/calefaction/eve/image.py +++ b/calefaction/eve/image.py @@ -52,12 +52,12 @@ class ImageServer: def faction(self, id, width): """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): """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): """Return a URL for ship render image.""" - return self._url + "Render/{}_{}.jpg".format(id, width) + return self._url + "Render/{}_{}.png".format(id, width)