From cb02309cc41fbae69e3ff3efcb3e3feb763189ff Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 27 Nov 2007 17:16:27 -0500 Subject: Changes to make "cobbler ___ report [___]" and "cobbler ___ list" work like they used to, which means adding a few subcommands, abstracting away the list logic, and writing some minor code to make the trailing names look like --name=x to please optparse. --- cobbler/action_sync.py | 1 + 1 file changed, 1 insertion(+) (limited to 'cobbler/action_sync.py') diff --git a/cobbler/action_sync.py b/cobbler/action_sync.py index 00a9d80..ad4143d 100644 --- a/cobbler/action_sync.py +++ b/cobbler/action_sync.py @@ -553,6 +553,7 @@ class BootSync: self.apply_template(kfile, meta, dest) kfile.close() except: + traceback.print_exc() raise CX(_("Error templating file %(src)s to %(dest)s") % { "src" : meta["kickstart"], "dest" : dest }) def load_snippet_cache(self): -- cgit