Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Sep 4, 2018
1 parent 301cd2f commit d3a4e0c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions readthedocs/core/resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,12 @@ def resolve(self, project, require_https=False, filename='', private=None,
return '{protocol}://{domain}{path}'.format(
protocol=protocol,
domain=domain,
path=self.resolve_path(project, filename=filename, private=private,
**kwargs),
path=self.resolve_path(
project,
filename=filename,
private=private,
**kwargs,
),
)

def _get_canonical_project(self, project, projects=None):
Expand Down

0 comments on commit d3a4e0c

Please sign in to comment.