textproc/py-stemming: Fix build with setuptools 58.0.0+

With hat:	python
This commit is contained in:
Po-Chuan Hsieh 2022-03-25 21:34:49 +08:00
parent 7b1e395e9a
commit 28825935b9
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B

View File

@ -0,0 +1,11 @@
--- stemming/porter.py.orig 2010-02-08 23:06:43 UTC
+++ stemming/porter.py
@@ -173,7 +173,7 @@ def stem(w):
return w
if __name__ == '__main__':
- print stem("fundamentally")
+ print(stem("fundamentally"))