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 46c236d21fad78824a6ff1505c188316e3247a6b (commit)
from 1ba34efb82000764682764a21a7becc2e86e8360 (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/46c236d21fad78824a6ff1505c188316e3247a6b
commit 46c236d21fad78824a6ff1505c188316e3247a6b
Author: Oleg Broytman <ph...@ph...>
Date: Mon Feb 18 21:31:34 2019 +0300
Style(setup): Fix flake8 F821 undefined name `execfile` under Python 3
diff --git a/setup.py b/setup.py
index c31573b..9e5a954 100755
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ versionpath = join(abspath(dirname(__file__)), 'sqlobject', '__version__.py')
sqlobject_version = {}
if sys.version_info[:2] == (2, 7):
- execfile(versionpath, sqlobject_version)
+ execfile(versionpath, sqlobject_version) # noqa: F821 'execfile' Py3
elif sys.version_info >= (3, 4):
exec(open(versionpath, 'rU').read(), sqlobject_version)
-----------------------------------------------------------------------
Summary of changes:
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
SQLObject development repository
|