Skip to content

Commit d7643f6

Browse files
committedNov 12, 2013
Fix regression in Issue.close()
1 parent 98209c7 commit d7643f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎gitlab3/_api_definition.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ class CloseAction(ExtraActionDefinition):
245245
@classmethod
246246
def wrapper(cls, extra_action_fn, parent):
247247
def wrapped(self):
248-
extra_action_fn(self, state_event=cls.name())
248+
extra_action_fn(self, cls.name())
249249
setattr(self, 'state', cls._state_after)
250250
return wrapped
251251
class ReopenAction(CloseAction):

0 commit comments

Comments
 (0)