From f6149af5a9de7b6093677a568e420b887e471341 Mon Sep 17 00:00:00 2001 From: Nicolas Simon Date: Sat, 6 May 2017 14:22:48 +0200 Subject: [PATCH] Fix name typo in debug when no links found --- archive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archive.py b/archive.py index 0070323c..bd86476b 100755 --- a/archive.py +++ b/archive.py @@ -187,7 +187,7 @@ def create_archive(service_file, service, resume=None): if not links: if service == "pocket": - print('[X] No links found in {}, is it a getpocket.com/export export?'.format(serivce_file)) + print('[X] No links found in {}, is it a getpocket.com/export export?'.format(service_file)) elif service == "pinboard": print ('[X] No links found in {}, is it a pinboard.in/export/format:json/ export?'.format(service_file)) raise SystemExit(1)