summaryrefslogtreecommitdiff
path: root/alembic/command.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-05-31 16:18:57 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2022-05-31 16:21:27 -0400
commit2cd9e1ae0c1c8c6becc43029b71b1c1fd2303dda (patch)
tree50592fd2d458855e0c464636ff8b4b85e96a97ba /alembic/command.py
parent11839b743d1c13ce04948526fe66f51a12de4429 (diff)
downloadalembic-2cd9e1ae0c1c8c6becc43029b71b1c1fd2303dda.tar.gz
remove pylons template
also some other doc updates Fixes: #987 Change-Id: Icf3513201a4e26296cef15e2d6b3703759f6e831
Diffstat (limited to 'alembic/command.py')
-rw-r--r--alembic/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alembic/command.py b/alembic/command.py
index d48affc..bbff75d 100644
--- a/alembic/command.py
+++ b/alembic/command.py
@@ -29,7 +29,7 @@ def list_templates(config):
with open(
os.path.join(config.get_template_directory(), tempname, "README")
) as readme:
- synopsis = next(readme)
+ synopsis = next(readme).rstrip()
config.print_stdout("%s - %s", tempname, synopsis)
config.print_stdout("\nTemplates are used via the 'init' command, e.g.:")