mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
12 lines
237 B
Plaintext
12 lines
237 B
Plaintext
--- 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"))
|
|
|
|
|
|
|