File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ def on_config(self, config):
106
106
archive = BytesIO ()
107
107
example = input ("\n Please name your bug report (2-4 words): " )
108
108
example , _ = os .path .splitext (example )
109
- example = slugify (example , "-" )
109
+ example = "-" . join ([ present , slugify (example , "-" )] )
110
110
111
111
# Create self-contained example from project
112
112
files : list [str ] = []
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ def on_config(self, config):
106
106
archive = BytesIO ()
107
107
example = input ("\n Please name your bug report (2-4 words): " )
108
108
example , _ = os .path .splitext (example )
109
- example = slugify (example , "-" )
109
+ example = "-" . join ([ present , slugify (example , "-" )] )
110
110
111
111
# Create self-contained example from project
112
112
files : list [str ] = []
You can’t perform that action at this time.
0 commit comments