File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 628
628
"data" :data ["feature_request" ],
629
629
"dependency" :[]
630
630
},
631
- ".github/wordflows /greetings.yml" :{
631
+ ".github/workflows /greetings.yml" :{
632
632
"data" :data ["greetings" ],
633
633
"dependency" :[]
634
634
},
674
674
if (not os .path .exists (filepath )) or (os .path .getsize (filepath ) == 0 ):
675
675
with open (filepath , "w" ) as f :
676
676
if filepath == "CODE_OF_CONDUCT.md" :
677
- f .write (config_files [filepath ]["data" ].format (project_name ))
677
+ f .write (config_files [filepath ]["data" ].format (project_name = project_name ))
678
678
elif filepath == "README.md" :
679
679
f .write (config_files [filepath ]["data" ].format (project_name = project_name , short_description = shortdescription ))
680
680
elif filepath == "CONTRIBUTING.md" :
683
683
else :
684
684
print (f"{ filepath } is already exists" )
685
685
except Exception as e :
686
- print ( f"error - { e } " )
686
+ raise e
You can’t perform that action at this time.
0 commit comments