Skip to content

Commit

Permalink
python3-pykwalify: fix missing comma
Browse files Browse the repository at this point in the history
...
|/usr/lib/python3.8/site-packages/pykwalify/rule.py:343: SyntaxWarning:
'tuple' object is not callable; perhaps you missed a comma?
...

Signed-off-by: Hongxu Jia <[email protected]>
Acked-by: Trevor Gamblin <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
  • Loading branch information
hongxu-jia authored and kraj committed Sep 24, 2020
1 parent 71b077e commit a88c7c9
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
From f96b76efb810d7d559254d0ec58de628e09f525a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mart=C3=AD=20Bol=C3=ADvar?= <[email protected]>
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 <[email protected]>

Upstream-Status: Backport [https://github.com/Grokzen/pykwalify.git]
Signed-off-by: Hongxu Jia <[email protected]>
---
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

Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=a72ea5159364a2cd7f45c6dcbee37872"
SRC_URI[md5sum] = "58357f1d0f77de976e73dbd3660af75b"
SRC_URI[sha256sum] = "7e8b39c5a3a10bc176682b3bd9a7422c39ca247482df198b402e8015defcceb2"

SRC_URI += "file://0001-rule.py-fix-missing-comma.patch"

PYPI_PACKAGE = "pykwalify"
inherit setuptools3 pypi
unset _PYTHON_SYSCONFIGDATA_NAME
Expand Down

0 comments on commit a88c7c9

Please sign in to comment.