mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fixed wrong logic, fixes #39220
This commit is contained in:
parent
ab76054127
commit
a4b169e0bd
1 changed files with 1 additions and 1 deletions
|
@ -1395,7 +1395,7 @@ def _get_line_indent(src, line, indent):
|
|||
'''
|
||||
Indent the line with the source line.
|
||||
'''
|
||||
if not (indent or line):
|
||||
if not indent:
|
||||
return line
|
||||
|
||||
idt = []
|
||||
|
|
Loading…
Add table
Reference in a new issue