Skip to content

Commit 559a2d1

Browse files
committed
libfetchers/git: fix double quoting in error message
1 parent 2c1447b commit 559a2d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libfetchers/git.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ struct GitInputScheme : InputScheme
637637
if (!input.getRev())
638638
setWriteTime(localRefFile, now, now);
639639
} catch (Error & e) {
640-
warn("could not update mtime for file '%s': %s", localRefFile, e.info().msg);
640+
warn("could not update mtime for file %s: %s", localRefFile, e.info().msg);
641641
}
642642
if (!originalRef && !storeCachedHead(repoUrl.to_string(), ref))
643643
warn("could not update cached head '%s' for '%s'", ref, repoInfo.locationToArg());

0 commit comments

Comments
 (0)