From 18e46757910f6b3afc423779ae4997e34e03a1cc Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Thu, 10 Oct 2019 15:52:59 +0200 Subject: [PATCH] Fix select command --- osclib/stagingapi.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/osclib/stagingapi.py b/osclib/stagingapi.py index 1fe1034f..da1e0b90 100644 --- a/osclib/stagingapi.py +++ b/osclib/stagingapi.py @@ -990,6 +990,9 @@ class StagingAPI(object): if act_type == 'delete': self.delete_to_prj(act[0], project) + if act_type == 'submit': + self.submit_to_prj(req.get_actions('submit')[0], project) + # unignore a request selected to a project requests_ignored = self.get_ignored_requests() request_id = int(request_id)