X-Git-Url: http://dolda2000.com/gitweb/?p=automanga.git;a=blobdiff_plain;f=automanga;h=a3e7af4ba5ac1b9b912cff26ef434c558d0db4c3;hp=98b3c9b948d004796ba8ab7f9bd0e6b310cf5b7a;hb=acdde6cabb481343d32450ac88873cf0ee063c9a;hpb=0d5fcfbbf04b817b514c39b948339b71bd8da74b 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):