fix: do not force description format
This commit is contained in:
parent
673c9c22fe
commit
0d66edac20
1 changed files with 1 additions and 6 deletions
|
|
@ -40,7 +40,7 @@ from .i18n import _
|
||||||
class RougailUserDataQuestionary:
|
class RougailUserDataQuestionary:
|
||||||
"""Rougail userdata for Questionary"""
|
"""Rougail userdata for Questionary"""
|
||||||
|
|
||||||
interactive_user_datas = True
|
interactive_user_data = True
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
|
|
@ -77,12 +77,7 @@ class RougailUserDataQuestionary:
|
||||||
if self.rougailconfig["questionary.mandatory"]:
|
if self.rougailconfig["questionary.mandatory"]:
|
||||||
self.parse_mandatories()
|
self.parse_mandatories()
|
||||||
else:
|
else:
|
||||||
old_path_in_description = self.config.information.get(
|
|
||||||
"path_in_description", True
|
|
||||||
)
|
|
||||||
self.config.information.set("path_in_description", False)
|
|
||||||
self.parse(self.config)
|
self.parse(self.config)
|
||||||
self.config.information.set("path_in_description", old_path_in_description)
|
|
||||||
if add_demoting:
|
if add_demoting:
|
||||||
self.config.property.remove("demoting_error_warning")
|
self.config.property.remove("demoting_error_warning")
|
||||||
return [
|
return [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue