Another f-string

pull/520/head
James Bourbeau 2018-12-18 09:07:52 -06:00
rodzic 929deaceb4
commit 3cadb1832d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -38,7 +38,7 @@ class Git(ContentProvider):
if hash is None:
self.log.error('Failed to check out ref %s', ref,
extra=dict(phase='failed'))
raise ValueError(f'Failed to check out ref {ref}')
raise ValueError('Failed to check out ref {}'.format(ref))
# If the hash is resolved above, we should be able to reset to it
for line in execute_cmd(['git', 'reset', '--hard', hash],
cwd=output_dir,