-
-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
get_x_arguments(as_dictionary=True)
for args without =
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. Fixes: #1369 Closes: #1370 Pull-request: #1370 Pull-request-sha: 830a690 Change-Id: I610d2d9022a0a08e56e0f62f6890f3f0d5bc169a
- Loading branch information
Showing
4 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.. change:: | ||
: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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters