gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-deployment] branch master updated: TypeError related


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: TypeError related to list of changed files
Date: Thu, 07 Dec 2017 15:33:51 +0100

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 3571862  TypeError related to list of changed files
3571862 is described below

commit 3571862b436b443b9948f718322639d21c46b85f
Author: Marcello Stanisci <address@hidden>
AuthorDate: Thu Dec 7 15:33:20 2017 +0100

    TypeError related to list of changed files
---
 buildbot/master.cfg | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 3c41b33..e90606a 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -58,10 +58,10 @@ c["change_source"] = [ALLCS]
 # Re-build documentation periodically
 
 def doc_filter(change):
-    changes = change.asDict()
-    if changes.get("project") in ["api", "www"]:
+    _changes = change.asDict()
+    if _changes.get("project") in ["api", "www"]:
         return True
-    files = changes.get("files")
+    files = _changes.get("files", [])
     for file in files:
         if re.search(r"doc|manual", file):
             return True

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]