]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- typo
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 4 Apr 2013 19:19:36 +0000 (15:19 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 4 Apr 2013 19:19:36 +0000 (15:19 -0400)
- changelog:       Added --head-only option to "alembic current",
      will print current version plus the symbol
      "(head)" if this version is the head or not.
      Courtesy Charles-Axel Dein.

alembic/config.py
docs/build/changelog.rst

index 3c51024ec3f26c4357ca9f9d94eaf220104d9904..822df8c79bd85acfdcf9e61cc47a2cae4dea00f1 100644 (file)
@@ -197,7 +197,7 @@ class CommandLine(object):
                 parser.add_argument("--head-only",
                                     action="store_true",
                                     help="Only show current version and "
-                                    "wheter or not this is the head revision.")
+                                    "whether or not this is the head revision.")
 
             positional_help = {
                 'directory': "location of scripts directory",
index a3ecb6b22eb2c290fadbd443a9be5c2a57d6a11f..25b72a3f3f25a8250db07f9fad3a909fd95ee084 100644 (file)
@@ -6,6 +6,15 @@ Changelog
 .. changelog::
     :version: 0.5.0
 
+    .. change::
+        :tags: feature
+        :pullreq: 28
+
+      Added --head-only option to "alembic current",
+      will print current version plus the symbol
+      "(head)" if this version is the head or not.
+      Courtesy Charles-Axel Dein.
+
     .. change::
         :tags: bug
         :tickets: 110