We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a23889 commit 290d495Copy full SHA for 290d495
src/osm2pgsql.cpp
@@ -64,7 +64,8 @@ prepare_input_files(options_t const &options)
64
if (file.format() == osmium::io::file_format::unknown) {
65
if (options.input_format.empty()) {
66
throw std::runtime_error{
67
- "Cannot detect file format. Try using -r."};
+ "Cannot detect file format for '{}'. Try using -r."_format(
68
+ filename)};
69
}
70
71
"Unknown file format '{}'."_format(options.input_format)};
0 commit comments