[releng] process-git-requests: rename i to person

Till Maas till at fedoraproject.org
Thu Jan 1 21:23:29 UTC 2015


commit 4980d6c6f7fdf7b4d9860871fed27f15e4c17b3b
Author: Till Maas <opensource at till.name>
Date:   Thu Jan 1 22:23:11 2015 +0100

    process-git-requests: rename i to person

 scripts/process-git-requests/process-git-requests |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/scripts/process-git-requests/process-git-requests b/scripts/process-git-requests/process-git-requests
index 068a481..ef82af8 100755
--- a/scripts/process-git-requests/process-git-requests
+++ b/scripts/process-git-requests/process-git-requests
@@ -222,13 +222,13 @@ def edit_package(pkgdb, request):
     LOG.info('Edit package %s in pkgdb', request['pkg'])
     for retry in range(1, config['pkgdb.retries'] + 1):
         try:
-            for i in ([request['owner']] + request['comaintainers']):
+            for person in ([request['owner']] + request['comaintainers']):
                 pkgdb.update_acl(
                     str(request['pkg']),
                     request['newbranches'],
                     ['watchcommits', 'watchbugzilla', 'approveacls', 'commit'],
                     'Approved',
-                    i)
+                    person)
         except AuthError, e:
             if retry >= config['pkgdb.retries']:
                 break


More information about the rel-eng mailing list