From ac2d8bc12b8d3ea7a3a1cc7849801678b3525459 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 1 Sep 2008 22:40:53 -0700 Subject: [PATCH] IGN:Make handling of missing formats more robust --- src/calibre/trac/bzr_commit_plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/trac/bzr_commit_plugin.py b/src/calibre/trac/bzr_commit_plugin.py index 61d4fa1dd9..5efc68d566 100644 --- a/src/calibre/trac/bzr_commit_plugin.py +++ b/src/calibre/trac/bzr_commit_plugin.py @@ -82,7 +82,7 @@ class cmd_commit(_cmd_commit): def run(self, message=None, file=None, verbose=False, selected_list=None, unchanged=False, strict=False, local=False, fixes=None, - author=None, show_diff=False): + author=None, show_diff=False, exclude=None): nick = config = bug = action = None if message: try: @@ -97,7 +97,7 @@ class cmd_commit(_cmd_commit): ret = _cmd_commit.run(self, message=message, file=file, verbose=verbose, selected_list=selected_list, unchanged=unchanged, strict=strict, local=local, fixes=fixes, - author=author, show_diff=show_diff) + author=author, show_diff=show_diff, exclude=exclude) if message and bug and action and nick and config: self.close_bug(bug, action, url, config) return ret