Skip to content

Commit

Permalink
Fixed table definition from <PREFIX>,<USER> to <PREFIX>.<USER> for "P…
Browse files Browse the repository at this point in the history
…arameter is missing" Error <OUTPUT_TABLE> .
  • Loading branch information
SimonNieland committed Sep 13, 2024
1 parent daa6ae4 commit c47a394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/osm/osmdb_buildStructures.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ def main(srcdb, deffile, dstdb):
where <INPUT_TABLES_PREFIX> is defined as:
<HOST>,<DB>,<SCHEMA>,<PREFIX>.<USER>,<PASSWD>
and <OUTPUT_TABLE> is defined as:
<HOST>,<DB>,<SCHEMA>,<NAME>,<USER>,<PASSWD>""")
<HOST>,<DB>,<SCHEMA>.<NAME>,<USER>,<PASSWD>""")
sys.exit(1)
main(sys.argv[1], sys.argv[2], sys.argv[3])
sys.exit(0)
Expand Down

0 comments on commit c47a394

Please sign in to comment.