示例#1
0
 def set_logo_from_gog(self, gog_game):
     """Sets the game logo from the data retrieved from GOG"""
     if self.title_logo or not self.gogid:
         return
     self.title_logo = ContentFile(
         gog.get_logo(gog_game), "gog-%s.jpg" % self.gogid
     )
示例#2
0
文件: models.py 项目: lutris/website
 def set_logo_from_gog(self, gog_game):
     """Sets the game logo from the data retrieved from GOG"""
     if self.title_logo or not self.gogid:
         return
     self.title_logo = ContentFile(
         gog.get_logo(gog_game), "gog-%s.jpg" % self.gogid
     )