diff options
| author | Barry Warsaw | 2016-04-09 06:48:57 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2016-04-09 06:48:57 -0400 |
| commit | 2fb155d8f8b2890a481d51857b6e71ebefbe5654 (patch) | |
| tree | 0c58a40678c7a0f81983be2013b7bddb88637a97 /src/mailman/commands/cli_withlist.py | |
| parent | 4b5a9d2e2530d2dbd62a59248e0ee796340ed784 (diff) | |
| download | mailman-2fb155d8f8b2890a481d51857b6e71ebefbe5654.tar.gz mailman-2fb155d8f8b2890a481d51857b6e71ebefbe5654.tar.zst mailman-2fb155d8f8b2890a481d51857b6e71ebefbe5654.zip | |
Diffstat (limited to 'src/mailman/commands/cli_withlist.py')
| -rw-r--r-- | src/mailman/commands/cli_withlist.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mailman/commands/cli_withlist.py b/src/mailman/commands/cli_withlist.py index 492391c7b..97e205806 100644 --- a/src/mailman/commands/cli_withlist.py +++ b/src/mailman/commands/cli_withlist.py @@ -142,7 +142,8 @@ class Withlist: abort=config.db.abort, config=config, ) - banner = config.shell.banner + '\n' + banner + banner = config.shell.banner + '\n' + ( + banner if isinstance(banner, str) else '') if as_boolean(config.shell.use_ipython): self._start_ipython(overrides, banner) else: |
