From acdde6cabb481343d32450ac88873cf0ee063c9a Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Sun, 4 May 2014 22:30:30 +0200 Subject: [PATCH] Don't crash on tag listing when a manga has ceased to exist. --- automanga | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/automanga b/automanga index 98b3c9b..a3e7af4 100755 --- a/automanga +++ b/automanga @@ -79,8 +79,11 @@ def main(): if listtag is not None: if profile is not None: for mprof in profile.bytag(listtag): - mng = mprof.open() - sys.stdout.write("%s %s: \"%s\"\n" % (mprof.libnm, mprof.id, mng.name)) + try: + mng = mprof.open() + sys.stdout.write("%s %s: \"%s\"\n" % (mprof.libnm, mprof.id, mng.name)) + except KeyError: + sys.stdout.write("%s %s: no longer exists\n" % (mprof.libnm, mprof.id)) return if alias and (alias.find('=') > 0): -- 2.11.0