Skip to content

Commit

Permalink
Added version to info plugin example name
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Aug 26, 2023
1 parent d26a949 commit db568b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion material/plugins/info/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def on_config(self, config):
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] = []
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/info/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def on_config(self, config):
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] = []
Expand Down

0 comments on commit db568b1

Please sign in to comment.