diff --git a/material/plugins/info/plugin.py b/material/plugins/info/plugin.py index b0bcc71f1..41dc0373f 100644 --- a/material/plugins/info/plugin.py +++ b/material/plugins/info/plugin.py @@ -106,7 +106,7 @@ class InfoPlugin(BasePlugin[InfoConfig]): archive = BytesIO() example = input("\nPlease name your bug report (2-4 words): ") example, _ = os.path.splitext(example) - example = slugify(example, "-") + example = "-".join([present, slugify(example, "-")]) # Create self-contained example from project files: list[str] = [] diff --git a/src/plugins/info/plugin.py b/src/plugins/info/plugin.py index b0bcc71f1..41dc0373f 100644 --- a/src/plugins/info/plugin.py +++ b/src/plugins/info/plugin.py @@ -106,7 +106,7 @@ class InfoPlugin(BasePlugin[InfoConfig]): archive = BytesIO() example = input("\nPlease name your bug report (2-4 words): ") example, _ = os.path.splitext(example) - example = slugify(example, "-") + example = "-".join([present, slugify(example, "-")]) # Create self-contained example from project files: list[str] = []