File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -48,15 +48,15 @@ def write(self):
48
48
with open ('CHANGELOG.md' , 'w' ) as md_file :
49
49
md_file .writelines (self ._converter ())
50
50
51
- print ('\n ' + 'Done !' )
51
+ print ('\n ' + 'Markdown file created !' )
52
52
53
53
elif self .file_type == 'json' :
54
54
self ._converter ()
55
55
56
56
with open (self .file_name + '.' + self .file_type , 'w' ) as json_file :
57
57
json .dump (self ._dict_repo_template (), json_file , indent = 4 )
58
58
59
- print ('\n ' + 'Done !' )
59
+ print ('\n ' + 'JSON file created !' )
60
60
elif self .file_type == 'rst' :
61
61
raise NotImplementedError ("Coming soon" )
62
62
else :
@@ -168,15 +168,15 @@ def write(self):
168
168
with open ('CHANGELOG.md' , 'w' ) as md_file :
169
169
md_file .writelines (self ._converter ())
170
170
171
- print ('\n ' + 'Done !' )
171
+ print ('\n ' + 'Markdown file created !' )
172
172
173
173
elif self .file_type == 'json' :
174
174
self ._converter ()
175
175
176
176
with open (self .file_name + '.' + self .file_type , 'w' ) as json_file :
177
177
json .dump (self ._dict_repo_template (), json_file , indent = 4 )
178
178
179
- print ('\n ' + 'Done !' )
179
+ print ('\n ' + 'JSON file created !' )
180
180
elif self .file_type == 'rst' :
181
181
raise NotImplementedError ("Coming soon" )
182
182
else :
You can’t perform that action at this time.
0 commit comments