mirror of
https://git.freebsd.org/ports.git
synced 2025-05-02 03:26:41 -04:00
11 lines
237 B
Text
11 lines
237 B
Text
--- 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"))
|
|
|
|
|
|
|