Skip to content

Commit

Permalink
Fix join/format typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Apr 8, 2020
1 parent 145378d commit 60a2929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def chdir(path):

def t(message):
path, rest = message.split(' ', 1)
return '{} {}'.join(path.replace('/', os.sep), rest)
return '{} {}'.format(path.replace('/', os.sep), rest)


def validate(name, *args, **kwargs):
Expand Down

0 comments on commit 60a2929

Please sign in to comment.