Skip to content

Commit

Permalink
Fix lint line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
techtonik authored Nov 23, 2017
1 parent 3f6b03b commit 4dd5605
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion readthedocs/vcs_support/backends/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ def tags(self):
# of annotated tags pointing to tagged commits.
retcode, stdout, _ = self.run(
'git', 'for-each-ref',
'--format="%(if)%(*objectname)%(then)%(*objectname)%(else)%(objectname)%(end) %(refname)"',
'--format="%(if)%(*objectname)%(then)%(*objectname)'
'%(else)%(objectname)%(end) %(refname)"',
'refs/tags')
# error (or no tags found)
if retcode != 0:
Expand Down

0 comments on commit 4dd5605

Please sign in to comment.