[openssl-commits] [tools] master update

Rich Salz rsalz at openssl.org
Fri Jun 16 15:23:51 UTC 2017


The branch master has been updated
       via  6f80fa00aefcfd39481f17eff9df7e85fa1eb9ab (commit)
      from  6cb0b16fb56e88999d66b09c47491335c06cfe81 (commit)


- Log -----------------------------------------------------------------
commit 6f80fa00aefcfd39481f17eff9df7e85fa1eb9ab
Author: Rich Salz <rsalz at openssl.org>
Date:   Fri Jun 16 11:23:49 2017 -0400

    Remove commas in text field

-----------------------------------------------------------------------

Summary of changes:
 license/whattoremove | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/license/whattoremove b/license/whattoremove
index 3fc47f0..57cd1ef 100755
--- a/license/whattoremove
+++ b/license/whattoremove
@@ -53,6 +53,6 @@ for cid in cids:
     for row in cursor:
         commit,date,descrip = row
         commit = commit[0:7]
-        descrip = descrip.replace('"', '\'')
+        descrip = descrip.replace('"', '\'').replace(',', '')
         if include == None or commit in include:
             print '%s, %s, "%s"' % (commit, emails[cid], descrip)


More information about the openssl-commits mailing list