From: martinko Date: Mon, 15 Apr 2013 15:54:04 +0000 (+0200) Subject: londiste: inform about no tables passed on cmd line (thus nothing to do) X-Git-Tag: skytools_3_1_5^2~19 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=99ef13f2a06a4f8172535332d585f019f52e4a65;p=skytools.git londiste: inform about no tables passed on cmd line (thus nothing to do) --- diff --git a/python/londiste/setup.py b/python/londiste/setup.py index a7dbb13e..1348d262 100644 --- a/python/londiste/setup.py +++ b/python/londiste/setup.py @@ -577,6 +577,9 @@ class LondisteSetup(CascadeAdmin): res = self.solve_globbing(args, lst_exists, map_exists, map_missing, allow_nonexist) else: res = self.solve_globbing(args, lst_missing, map_missing, map_exists, allow_nonexist) + + if not res: + self.log.info("what to do ?") return res def solve_globbing(self, args, full_list, full_map, reverse_map, allow_nonexist):