:tags: bug, autogenerate
:tickets: 1337
- Fixes `autogenerate.Rewriter` so that more than two instances could be
- chained together correctly, and `process_revision_directives` callable
- could also be chained.
+ Fixed :class:`.Rewriter` so that more than two instances could be chained
+ together correctly, also allowing multiple ``process_revision_directives``
+ callables to be chained. Pull request courtesy zrotceh.
+
:tags: bug, environment
:tickets: 1369
- Fixed issue where ``get_x_arguments(as_dictionary=True)`` would fail if an
- argument key were passed without an equal sign ``=`` or a value.
- Behavior is repaired where this condition is detected and will return a
- blank string for the given key, consistent with the behavior where the
- ``=`` sign is present and no value. Pull request courtesy Iuri de Silvio.
+ Fixed issue where the method :meth:`.EnvironmentContext.get_x_argument`
+ using the :paramref:`.EnvironmentContext.get_x_argument.as_dictionary`
+ parameter would fail if an argument key were passed on the command line as
+ a name alone, that is, without an equal sign ``=`` or a value. Behavior is
+ repaired where this condition is detected and will return a blank string
+ for the given key, consistent with the behavior where the ``=`` sign is
+ present and no value. Pull request courtesy Iuri de Silvio.