From 781858ca150993a0606135b91f00b69dab6b23e6 Mon Sep 17 00:00:00 2001 From: GRiker Date: Fri, 11 Jun 2010 06:24:59 -0600 Subject: [PATCH] GwR fix to output empty catalogs when no search results --- src/calibre/library/catalog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/library/catalog.py b/src/calibre/library/catalog.py index 53a93deac4..21aa863031 100644 --- a/src/calibre/library/catalog.py +++ b/src/calibre/library/catalog.py @@ -83,7 +83,7 @@ class CSV_XML(CatalogPlugin): if not len(data): log.error("\nNo matching database entries for search criteria '%s'" % opts.search_text) - raise SystemExit(1) + #raise SystemExit(1) # Get the requested output fields as a list fields = self.get_output_fields(opts)