1139360
From d2262267537fbe301e218901656b582f021bf67f Mon Sep 17 00:00:00 2001
1139360
From: Andrew Bauer <knnniggett@hotmail.com>
1139360
Date: Wed, 12 Dec 2018 10:19:29 -0600
1139360
Subject: [PATCH] make afpstats python 3 compatible
1139360
1139360
---
1139360
 contrib/shell_utils/afpstats | 2 +-
1139360
 1 file changed, 1 insertion(+), 1 deletion(-)
1139360
1139360
diff --git a/contrib/shell_utils/afpstats b/contrib/shell_utils/afpstats
1139360
index 8c5413c8..08092208 100755
1139360
--- a/contrib/shell_utils/afpstats
1139360
+++ b/contrib/shell_utils/afpstats
1139360
@@ -23,7 +23,7 @@ def main():
1139360
 
1139360
     reply = iface.GetUsers()
1139360
     for name in reply:
1139360
-        print name
1139360
+        print(name)
1139360
 
1139360
 if __name__ == '__main__':
1139360
     main()