fix syntax error

This commit is contained in:
missytake 2024-07-14 02:32:05 +02:00
parent 52a53335fb
commit e89d865442
Signed by: missytake
GPG key ID: 04CC6658320518DF

View file

@ -10,7 +10,7 @@ def main():
homedir = default=os.getenv("HOME", ".")
parser = argparse.ArgumentParser()
parser.add_argument(
"--db_path", type=str, homedir + "/.config/DeltaChat/accounts",
"--db_path", type=str, default=homedir + "/.config/DeltaChat/accounts",
help="Path to DeltaChat directory",
)
parser.add_argument("--account", type=str, help="email address of the account to backup")