Skip to content

Commit

Permalink
Fix Scribe-Data database transfer script
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Dec 9, 2024
1 parent 6355649 commit fc0b3a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scribe_data/load/send_dbs_to_scribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
db_names = [Path(db).stem for db in dbs_to_send]
db_names = sorted(db_names)
language_db_dict = {
get_language_from_iso(db[:2]): {
get_language_from_iso(db[:2].lower()): {
"db_location": PATH_TO_SCRIBE_DATA_ROOT
/ DEFAULT_SQLITE_EXPORT_DIR
/ f"{db}.sqlite"
Expand Down

0 comments on commit fc0b3a8

Please sign in to comment.