From 3cfca940319c46f3fad2f93e632ba99a01c2c196 Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 9 Apr 2016 13:25:59 +0530 Subject: [PATCH] Easily detect origin of Exception. --- buku | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/buku b/buku index 73b4ae2..6b66001 100755 --- a/buku +++ b/buku @@ -241,7 +241,7 @@ def getTitleData(resp): parser.feed(resp.read().decode(charset)) except Exception as e: if debug: - print("Exception: %s" % e) + printmsg("[getTitleData] " + e, "EXCEPTION") @@ -289,7 +289,7 @@ def fetchTitle(url): printmsg(("[" + str(resp.status) + "] " + resp.reason), "ERROR") break except Exception as e: - print("Exception: %s" % e) + printmsg("[fetchTitle] " + e, "EXCEPTION") finally: if urlconn is not None: urlconn.close() @@ -462,7 +462,7 @@ def searchdb(cur, keywords): openurl = unquote(results[int(nav) - 1]) browser_open(openurl) except Exception as e: - print("Exception: %s" % e) + printmsg("[searchdb] " + e, "EXCEPTION") else: break @@ -672,7 +672,7 @@ def browser_open(url): try: webbrowser.open(url) except Exception as e: - print("Browser Exception: %s" % e) + printmsg("[browser_open] " + e, "EXCEPTION") finally: os.close(fd) os.dup2(_stderr, 2)