From 2836c0c082aa23146eb8a583597d5b7d29781de7 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Mon, 21 Jan 2019 16:38:30 +0100
Subject: [PATCH] [scripts][ci] Correct call to twine.check

---
 bob/devtools/scripts/ci.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bob/devtools/scripts/ci.py b/bob/devtools/scripts/ci.py
index 3c7e12f2..a3226367 100644
--- a/bob/devtools/scripts/ci.py
+++ b/bob/devtools/scripts/ci.py
@@ -171,7 +171,7 @@ def readme(package):
       #twine check dist/*.zip
 
       from twine.commands.check import check
-      failed = check(k)
+      failed = check([k])
 
       if failed:
         raise RuntimeError('long_description of package %s cannot be ' \
-- 
GitLab