summaryrefslogtreecommitdiff
path: root/gnulib-tool.py
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2022-08-04 18:26:08 +0200
committerBruno Haible <bruno@clisp.org>2022-08-04 18:26:08 +0200
commit2a33db96531933f00405522d94ebc658236f0b84 (patch)
treebf3f2ec3e231c0cb6959e5507b9b527d03ba3a4d /gnulib-tool.py
parent948345cceab85ab699910a795d6b69ea2be6e300 (diff)
downloadgnulib-2a33db96531933f00405522d94ebc658236f0b84.tar.gz
gnulib-tool.py: Use mainstream/GNU coding style.
* gnulib-tool.py: Break lines before the % operator, not after. * pygnulib/*.py: Likewise. Avoid line breaks when the resulting lines are not too long.
Diffstat (limited to 'gnulib-tool.py')
-rwxr-xr-xgnulib-tool.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnulib-tool.py b/gnulib-tool.py
index 55e94fb25a..4f5494655d 100755
--- a/gnulib-tool.py
+++ b/gnulib-tool.py
@@ -387,9 +387,9 @@ def main():
print(info.usage())
sys.exit(0)
if cmdargs.version != None:
- message = '''gnulib-tool (%s %s)%s\n%s\n%s\n\nWritten by %s.''' % \
- (info.package(), info.date(), info.version(), info.copyright(),
- info.license(), info.authors())
+ message = '''gnulib-tool (%s %s)%s\n%s\n%s\n\nWritten by %s.''' \
+ % (info.package(), info.date(), info.version(), info.copyright(),
+ info.license(), info.authors())
print(message)
sys.exit(0)