]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Fix function call on incorrect object.
authorCollin Funk <collin.funk1@gmail.com>
Mon, 19 Feb 2024 00:52:45 +0000 (16:52 -0800)
committerBruno Haible <bruno@clisp.org>
Mon, 19 Feb 2024 02:05:04 +0000 (03:05 +0100)
* pygnulib/GLImport.py: Call checkInclTestCategory on the
GLConfig member instead of the GLImport object itself.
* pygnulib/__init__.py: Update copyright dates.
* pygnulib/constants.py: Update copyright dates.

ChangeLog
pygnulib/GLImport.py
pygnulib/__init__.py
pygnulib/constants.py

index 3a8559bfb372e0ca8eaedc6e40c0fc727fd0f6b4..b8d484e8daa1911fe806045f1593bb74357793b8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2024-02-18  Collin Funk  <collin.funk1@gmail.com>
+
+       gnulib-tool.py: Fix function call on incorrect object.
+       * pygnulib/GLImport.py: Call checkInclTestCategory on the
+       GLConfig member instead of the GLImport object itself.
+       * pygnulib/__init__.py: Update copyright dates.
+       * pygnulib/constants.py: Update copyright dates.
+
 2024-02-18  Bruno Haible  <bruno@clisp.org>
 
        maint.mk: Add more comments.
index b09ba9868c93174edd5a0a8b40ce6e7cce4223e5..68b2e7b0bb5f5871f4a634a5e155d35af23b12c5 100644 (file)
@@ -240,7 +240,7 @@ class GLImport(object):
                 modules = self.cache.getModules()
 
             # If user tries to apply conddeps and TESTS['tests'] together.
-            if self.checkInclTestCategory(TESTS['tests']) and self.config['conddeps']:
+            if self.config.checkInclTestCategory(TESTS['tests']) and self.config['conddeps']:
                 raise GLError(10, None)
 
             # Update configuration dictionary.
index 37cd33ef909cb2617c36291ff3c91d77b0a16349..b9050a98acb15e07f6e1d179f573e8bff9e37293 100644 (file)
@@ -30,6 +30,6 @@ coding standards, the GNU maintainer information, the GPL and other licenses (in
 Texinfo), assorted configuration scripts, and more. The goal is to provide all
 the common infrastructure needed by GNU packages.'''
 
-__copyright__ = '2012-2022 Free Software Foundation, Inc.'
+__copyright__ = '2012-2024 Free Software Foundation, Inc.'
 __author__ = 'Dmitry Selyutin'
 __license__ = 'GNU GPLv3+'
index a7e3d99cebfcc7ecce7405ee5a3e5f4055bf248a..a5554956c1d47a418bcb10552a348f02f8c11415 100644 (file)
@@ -42,7 +42,7 @@ __author__ = \
         'Dmitry Selyutin',
     ]
 __license__ = 'GNU GPLv3+'
-__copyright__ = '2002-2022 Free Software Foundation, Inc.'
+__copyright__ = '2002-2024 Free Software Foundation, Inc.'
 
 
 #===============================================================================