diff options
| author | bwarsaw | 2002-11-08 15:30:38 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-11-08 15:30:38 +0000 |
| commit | aeb1e0b725dfbf7971aa613b203d47b1d5349baa (patch) | |
| tree | 59fbddd5ad9d306fa95eaa3d751cee857dabedde | |
| parent | a5f6ee789db06fac97b0ab4242edb1186a1a6eab (diff) | |
| download | mailman-aeb1e0b725dfbf7971aa613b203d47b1d5349baa.tar.gz mailman-aeb1e0b725dfbf7971aa613b203d47b1d5349baa.tar.zst mailman-aeb1e0b725dfbf7971aa613b203d47b1d5349baa.zip | |
Fix -h/--help and also sprinkle reminders to run bin/check_perms
afterwards.
| -rw-r--r-- | bin/b4b5-archfix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/b4b5-archfix b/bin/b4b5-archfix index 3ef42d2d4..0ae66c9d7 100644 --- a/bin/b4b5-archfix +++ b/bin/b4b5-archfix @@ -31,6 +31,8 @@ $PREFIX directory %% %(PROGRAM)s `grep -l _mlist archives/private/*/database/*-article` (note the backquotes are required) + +You will need to run `bin/check_perms -f' after running this script. """ # This script is provided for convenience purposes only. It isn't supported. @@ -42,6 +44,7 @@ import cPickle as pickle # Required to get the right classes for unpickling import paths +from Mailman.i18n import _ PROGRAM = sys.argv[0] @@ -85,6 +88,8 @@ def main(): os.rename(filename, filename + '.bak') os.rename(filename + '.tmp', filename) + print 'You should now run "bin/check_perms -f"' + if __name__ == '__main__': |
