Blob Blame History Raw
From d2262267537fbe301e218901656b582f021bf67f Mon Sep 17 00:00:00 2001
From: Andrew Bauer <knnniggett@hotmail.com>
Date: Wed, 12 Dec 2018 10:19:29 -0600
Subject: [PATCH] make afpstats python 3 compatible

---
 contrib/shell_utils/afpstats | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/shell_utils/afpstats b/contrib/shell_utils/afpstats
index 8c5413c8..08092208 100755
--- a/contrib/shell_utils/afpstats
+++ b/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()