From a67e1a392f2036e4112618bce58afee3f230099b Mon Sep 17 00:00:00 2001 From: Alberto Planas Date: Fri, 13 Jun 2014 16:11:15 +0200 Subject: [PATCH] Fix bug when groups are created. --- osclib/checkrepo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/osclib/checkrepo.py b/osclib/checkrepo.py index 6ac8b223..7aa107ad 100644 --- a/osclib/checkrepo.py +++ b/osclib/checkrepo.py @@ -246,6 +246,7 @@ class CheckRepo(object): requests = [] if request_id: + request_id = int(request_id) request = self.get_request(request_id) elif request: request_id = int(request.get('id'))