You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2019/04/27 00:38:00 UTC

[incubator-ponymail] branch master updated (cc01130 -> 3e33a6b)

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail.git.


    from cc01130  copy wanted_pkgs to avoid iterating over a "moving target".
     new 41a6da7  Undefined variable
     new 44e2c5e  Unused import
     new 77f976a  Oops, dropped veriable defines
     new 3e33a6b  Unused

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 tools/edit-list.py | 3 +--
 tools/nullfav.py   | 2 ++
 tools/setup.py     | 2 --
 3 files changed, 3 insertions(+), 4 deletions(-)


[incubator-ponymail] 03/04: Oops, dropped veriable defines

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail.git

commit 77f976abd6363c91e9ee9eddb26fb429d96d72d3
Author: Sebb <se...@apache.org>
AuthorDate: Sat Apr 27 01:30:13 2019 +0100

    Oops, dropped veriable defines
---
 tools/nullfav.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/nullfav.py b/tools/nullfav.py
index f630cb2..67f68d9 100755
--- a/tools/nullfav.py
+++ b/tools/nullfav.py
@@ -34,6 +34,8 @@ args = parser.parse_args()
 FAVES='favorites'
 TARGET=None
 
+updated = 0
+failed = 0
 elastic = Elastic()
 scroll_size = None # Only show it first time round
 for page in elastic.scan_and_scroll(doc_type='account', body = { "_source" : [FAVES] }):


[incubator-ponymail] 04/04: Unused

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail.git

commit 3e33a6b14db4df8d2770db6b554f435957e21207
Author: Sebb <se...@apache.org>
AuthorDate: Sat Apr 27 01:33:13 2019 +0100

    Unused
---
 tools/setup.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/tools/setup.py b/tools/setup.py
index 4c9ec87..386a4b6 100755
--- a/tools/setup.py
+++ b/tools/setup.py
@@ -15,8 +15,6 @@
 # limitations under the License.
 
 import sys, os, os.path
-import getpass
-import subprocess
 import argparse
 import shutil
 import logging


[incubator-ponymail] 02/04: Unused import

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail.git

commit 44e2c5ec2115e8dd5dca00f9b42272a33561381a
Author: Sebb <se...@apache.org>
AuthorDate: Sat Apr 27 01:18:34 2019 +0100

    Unused import
---
 tools/edit-list.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tools/edit-list.py b/tools/edit-list.py
index b91ee4c..fa69ac2 100755
--- a/tools/edit-list.py
+++ b/tools/edit-list.py
@@ -30,7 +30,6 @@ This utility can be used to:
 import sys
 import time
 import argparse
-import json
 
 from elastic import Elastic
 


[incubator-ponymail] 01/04: Undefined variable

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail.git

commit 41a6da76b0b00d641e3bd30779ba71ce2c0b5f34
Author: Sebb <se...@apache.org>
AuthorDate: Sat Apr 27 01:17:47 2019 +0100

    Undefined variable
---
 tools/edit-list.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/edit-list.py b/tools/edit-list.py
index 4eb268f..b91ee4c 100755
--- a/tools/edit-list.py
+++ b/tools/edit-list.py
@@ -179,7 +179,7 @@ def main():
                 body = {
                     'list': LID,
                     'name': LID,
-                    'description': desc
+                    'description':args.desc
                 }
             )
             print("All done, updated description.")