This commit is contained in:
missytake
2025-04-09 14:51:04 +02:00
committed by Hocuri
parent f5dea1d252
commit 18044c2fef

View File

@@ -93,10 +93,10 @@ def _run_cli(
parser.add_argument("--email", action="store", help="email address", default=os.getenv("DELTACHAT_EMAIL")) parser.add_argument("--email", action="store", help="email address", default=os.getenv("DELTACHAT_EMAIL"))
parser.add_argument("--password", action="store", help="password", default=os.getenv("DELTACHAT_PASSWORD")) parser.add_argument("--password", action="store", help="password", default=os.getenv("DELTACHAT_PASSWORD"))
parser.add_argument( parser.add_argument(
"--displayname", action="store", help="the profile's display name", default=os.getenv("DELTACHAT_DISPLAYNAME") "--displayname", action="store", help="the profile's display name", default=os.getenv("DELTACHAT_DISPLAYNAME"),
) )
parser.add_argument( parser.add_argument(
"--avatar", action="store", help="filename of the profile's avatar", default=os.getenv("DELTACHAT_AVATAR") "--avatar", action="store", help="filename of the profile's avatar", default=os.getenv("DELTACHAT_AVATAR"),
) )
args = parser.parse_args(argv[1:]) args = parser.parse_args(argv[1:])