summaryrefslogtreecommitdiff
path: root/pygnulib/constants.py
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2017-09-09 00:32:50 +0200
committerBruno Haible <bruno@clisp.org>2017-09-09 16:28:52 +0200
commitf0e4c4b6f63249dc26353fe0a39795fdccb1e0f8 (patch)
treed737df76fe1827dcc58646ee76611ac6c08c1c0c /pygnulib/constants.py
parentfc4e57bb4d9100ea022eca39ace7bec98beb309b (diff)
downloadgnulib-f0e4c4b6f63249dc26353fe0a39795fdccb1e0f8.tar.gz
gnulib-tool.py: follow gnulib-tool changes, part 3
Follow gnulib-tool change 2012-08-26 Bruno Haible <bruno@clisp.org> gnulib-tool: Remove no-op option --no-changelog. * pygnulib/constants.py: Remove FILES dictionary. * pygnulib/*: Update.
Diffstat (limited to 'pygnulib/constants.py')
-rw-r--r--pygnulib/constants.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/pygnulib/constants.py b/pygnulib/constants.py
index ec2ca62be8..6cb1ec97bb 100644
--- a/pygnulib/constants.py
+++ b/pygnulib/constants.py
@@ -59,7 +59,6 @@ APP = dict() # Application
DIRS = dict() # Directories
UTILS = dict() # Utilities
ENCS = dict() # Encodings
-FILES = dict() # Files
MODES = dict() # Modes
TESTS = dict() # Tests
NL = '''
@@ -105,9 +104,6 @@ DIRS['tests'] = os.path.join(DIRS['root'], 'tests')
DIRS['git'] = os.path.join(DIRS['root'], '.git')
DIRS['cvs'] = os.path.join(DIRS['root'], 'CVS')
-# Set FILES dictionary
-FILES['changelog'] = os.path.join(DIRS['root'], 'ChangeLog')
-
# Set MODES dictionary
MODES = \
{
@@ -449,4 +445,4 @@ def nlcount(text):
print(before, after)
-__all__ += ['APP', 'DIRS', 'FILES', 'MODES', 'UTILS']
+__all__ += ['APP', 'DIRS', 'MODES', 'UTILS']