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 be130c38f1ea2f31965345a537157124b6875dca (commit)
from 570cf8d5a43d4a6aeacaa4f1ebb6e92f09d35fbb (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/be130c38f1ea2f31965345a537157124b6875dca
commit be130c38f1ea2f31965345a537157124b6875dca
Author: Oleg Broytman <ph...@ph...>
Date: Sat Mar 2 20:57:22 2019 +0300
Refactor(compat.py): Rename `stuff` to `description`
diff --git a/sqlobject/compat.py b/sqlobject/compat.py
index a5a379c..72d696f 100644
--- a/sqlobject/compat.py
+++ b/sqlobject/compat.py
@@ -35,10 +35,10 @@ if PY2:
import imp
def load_module_from_file(base_name, module_name, filename):
- fp, pathname, stuff = imp.find_module(
+ fp, pathname, description = imp.find_module(
base_name, [os.path.dirname(filename)])
try:
- module = imp.load_module(module_name, fp, pathname, stuff)
+ module = imp.load_module(module_name, fp, pathname, description)
finally:
fp.close()
return module
-----------------------------------------------------------------------
Summary of changes:
sqlobject/compat.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
SQLObject development repository
|