fix broken API
This commit is contained in:
parent
9db6ac268b
commit
0b1a445027
1 changed files with 2 additions and 2 deletions
|
|
@ -64,7 +64,7 @@ class RedmineBackend(BaseBackend, ICapContent):
|
|||
content.content = data
|
||||
return content
|
||||
|
||||
def push_content(self, content, message=None):
|
||||
def push_content(self, content, message=None, minor=False):
|
||||
try:
|
||||
_type, project, page = self.id2path(content.id)
|
||||
except ValueError:
|
||||
|
|
@ -80,4 +80,4 @@ class RedmineBackend(BaseBackend, ICapContent):
|
|||
return
|
||||
|
||||
with self.browser:
|
||||
return self.browser.get_wiki_preview(project, page, content.content)
|
||||
return self.browser.get_wiki_preview(project, page, content.content)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue