From 9932fa3f7a2861f47920a6620a34274e8e60b782 Mon Sep 17 00:00:00 2001 From: rlaphoenix Date: Thu, 23 Feb 2023 09:07:21 +0000 Subject: [PATCH] Fix mistake when logging where the cookie file was moved --- devine/commands/auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devine/commands/auth.py b/devine/commands/auth.py index c4dd9b0..f18a615 100644 --- a/devine/commands/auth.py +++ b/devine/commands/auth.py @@ -1,6 +1,6 @@ import logging -import sys import shutil +import sys import tkinter.filedialog from collections import defaultdict from pathlib import Path @@ -248,7 +248,7 @@ def add(ctx: click.Context, profile: str, service: str, cookie: Optional[str] = log.error(f"A Cookie file for the Profile {profile} on {service} already exists.") sys.exit(1) shutil.move(cookie, final_path) - log.info(f"Moved Cookie file to: {cookie}") + log.info(f"Moved Cookie file to: {final_path}") if credential: config_path = Config._Directories.user_configs / Config._Filenames.root_config