Skip to content

Commit

Permalink
Flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
jikamens committed Feb 24, 2023
1 parent 43811aa commit d666fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/dconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def gvariant_maybe_string(value):
i = 0
while i < len(chars) - 1:
if chars[i] == '\\':
if chars[i+1] == value[0]:
if chars[i + 1] == value[0]:
chars[i] = ''
else:
# Otherwise we'll mishandle a \ quoted with a \
Expand Down

0 comments on commit d666fd2

Please sign in to comment.