ports/net/netatalk3/files/patch-contrib_shell__utils_afpstats
Joe Marcus Clarke 7f1c7eaa39 Update Python support for 3.x.
PR:		245970
Submitted by:	dim (partially)
2020-04-27 16:39:35 +00:00

11 lines
264 B
Text

--- contrib/shell_utils/afpstats.orig 2020-04-27 16:35:40 UTC
+++ contrib/shell_utils/afpstats
@@ -23,7 +23,7 @@ def main():
reply = iface.GetUsers()
for name in reply:
- print name
+ print(name)
if __name__ == '__main__':
main()