From b69591b451311047e43f2948ed9d6d3f8f3095de Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Thu, 31 Mar 2016 17:40:26 -0700 Subject: [PATCH] Slightly cleaner logging --- client/fetcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/fetcher.py b/client/fetcher.py index a63e3a4..4c05f34 100755 --- a/client/fetcher.py +++ b/client/fetcher.py @@ -147,7 +147,7 @@ class Fetcher(object): except FileNotFoundError: pass - print('Changing current link to:', path) + print('Changing current link to:', filename) temp_path = tempfile.mktemp(dir=self._image_dir) os.symlink(filename, temp_path) os.rename(temp_path, current_path)