Skip to content

Commit

Permalink
remotes fix fstring in wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
tgbugs committed Oct 31, 2019
1 parent 1ab8c73 commit 171f4c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions augpathlib/remotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ def anchorTo(cls, cache_anchor):
cls.init(cache_anchor.id)

if cls.root != cache_anchor.id:
raise ValueError(f'root and anchor ids do not match! '
'{cls.root} != {cache_anchor.id}')
raise ValueError('root and anchor ids do not match! '
f'{cls.root} != {cache_anchor.id}')

cls._cache_anchor = cache_anchor
else:
Expand Down

0 comments on commit 171f4c1

Please sign in to comment.