aboutsummaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pykwalify/0001-rule.py-fix-missing-comma.patch
blob: 689355eeafbb137d3fec29d0c068af02900981a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
From f96b76efb810d7d559254d0ec58de628e09f525a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mart=C3=AD=20Bol=C3=ADvar?= <marti.f.bolivar@gmail.com>
Date: Mon, 13 Jan 2020 08:42:05 -0800
Subject: [PATCH] rule.py: fix missing comma
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

A line in the defined_keywords list is missing a comma. Add it.

Signed-off-by: Martí Bolívar <marti.f.bolivar@gmail.com>

Upstream-Status: Backport [https://github.com/Grokzen/pykwalify.git]
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
 pykwalify/rule.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pykwalify/rule.py b/pykwalify/rule.py
index 7ac2c9e..f044b69 100644
--- a/pykwalify/rule.py
+++ b/pykwalify/rule.py
@@ -340,7 +340,7 @@ class Rule(object):
             ('matching', 'matching'),
             ('matching_rule', 'matching_rule'),
             ('name', 'name'),
-            ('nullable', 'nullable')
+            ('nullable', 'nullable'),
             ('parent', 'parent'),
             ('pattern', 'pattern'),
             ('pattern_regexp', 'pattern_regexp'),
-- 
2.18.2