From 956e3965f008351458038acdfb00939f7bcd7937 Mon Sep 17 00:00:00 2001 From: rachmadani haryono Date: Sat, 14 Oct 2017 22:39:57 +0800 Subject: [PATCH] fix: test: logerr args (#222) Thank you! --- buku.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buku.py b/buku.py index f497d22..1d04f96 100755 --- a/buku.py +++ b/buku.py @@ -2615,7 +2615,7 @@ def is_bad_url(url): try: netloc = parse_url(url).netloc except LocationParseError as e: - logerr('%s, URL: %s', (e, url)) + logerr('%s, URL: %s', e, url) return True if not netloc: # Try of prepend '//' and get netloc