This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
via 69d08334b97bb12e89429d5ab0758247ef09a71b (commit)
from e1a698ed6ccef20cd9645d1c88cc2b4f289d2366 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/sqlobject/sqlobject/ci/69d08334b97bb12e89429d5ab0758247ef09a71b
commit 69d08334b97bb12e89429d5ab0758247ef09a71b
Author: Oleg Broytman <ph...@ph...>
Date: Sun Apr 9 18:16:48 2017 +0300
[devscripts] Adapt set-commit-date.py to Python 3
Turn on universal_newlines.
[skip ci]
diff --git a/devscripts/set-commit-date.py b/devscripts/set-commit-date.py
index c5d49d4..dc6a5fb 100755
--- a/devscripts/set-commit-date.py
+++ b/devscripts/set-commit-date.py
@@ -13,7 +13,8 @@ separator = '----- GIT LOG SEPARATOR -----'
git_log = subprocess.Popen(['git', 'log', '-m', '--first-parent',
'--name-only', '--no-color',
'--format=%s%%n%%ct' % separator],
- stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
+ stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
+ universal_newlines=True)
filenames = set()
# stages: 1 - start of commit, 2 - timestamp, 3 - empty line, 4 - files
stage = 1
-----------------------------------------------------------------------
Summary of changes:
devscripts/set-commit-date.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
SQLObject development repository
|