changeset 19338:8623a1849f24

module: fix dummy_required helper
author Dmitry Selyutin <ghostmansd@gmail.com>
date Sun, 01 Oct 2017 20:25:50 +0300
parents dddb2a9ddaee
children 98d292989d79
files pygnulib/module.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/pygnulib/module.py	Sun Oct 01 20:25:06 2017 +0300
+++ b/pygnulib/module.py	Sun Oct 01 20:25:50 2017 +0300
@@ -541,8 +541,8 @@
             files = (files.split("#", 1)[0].split(" "))
             files = (file.strip() for file in files if file.strip())
             if {file for file in files if not file.endswith(".h")}:
-                return True
-    return False
+                return False
+    return True