Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
fix travis ci E510
Browse files Browse the repository at this point in the history
E501 line too long (85 > 79 characters)
  • Loading branch information
maphy-psd authored Aug 20, 2017
1 parent 7a627e4 commit 82f05e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/documents/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def created_(self, obj):

def thumbnail(self, obj):
if settings.FORCE_SCRIPT_NAME:
src_link = "{}/fetch/thumb/{}".format(settings.FORCE_SCRIPT_NAME, obj.id)
src_link = "{}/fetch/thumb/{}".format(
settings.FORCE_SCRIPT_NAME, obj.id)
else:
src_link = "/fetch/thumb/{}".format(obj.id)
png_img = self._html_tag(
Expand Down

0 comments on commit 82f05e2

Please sign in to comment.