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: names of changed


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: names of changed files are fetched from _dict_
Date: Thu, 07 Dec 2017 15:53:07 +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 a7539c7  names of changed files are fetched from _dict_
a7539c7 is described below

commit a7539c7be3cbfcb2e70c0341c4018c081b5978d4
Author: Marcello Stanisci <address@hidden>
AuthorDate: Thu Dec 7 15:52:34 2017 +0100

    names of changed files are fetched from _dict_
---
 buildbot/master.cfg | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index e90606a..c63a144 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -61,9 +61,9 @@ def doc_filter(change):
     _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):
+        if re.search(r"doc|manual", file.get("name", "")):
             return True
     return False
 

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



reply via email to

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