mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-21 20:30:43 +00:00
remove only first hashtag from a multiline comment
This commit is contained in:
parent
bd5300d674
commit
4252445ea2
@ -1,7 +1,2 @@
|
||||
* BUGFIX
|
||||
* add `role_name` config option to overwrite name of the role
|
||||
* fix not aborting overwrite dialog
|
||||
* fix failed loading of empty yaml files
|
||||
* fix failed loading of yaml files containing `!unsafe` tag
|
||||
* FEATURE
|
||||
* add basic hugo theme
|
||||
* remove only first hashtag from a multiline comment
|
||||
|
@ -139,7 +139,7 @@ class Annotation:
|
||||
self._file_handler.seek(current_file_position)
|
||||
break
|
||||
|
||||
final = next_line.replace("#", "").rstrip()
|
||||
final = re.findall(r"\#(.*)", next_line)[0].rstrip()
|
||||
if final[:1] == " ":
|
||||
final = final[1:]
|
||||
final = newline + final
|
||||
|
Loading…
Reference in New Issue
Block a user