Skip to content

Commit 3351943

Browse files
committed
Clear specification of what is done. Relates to #7
1 parent 7cbc7a1 commit 3351943

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

release_exporter/formatter.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ def write(self):
4848
with open('CHANGELOG.md', 'w') as md_file:
4949
md_file.writelines(self._converter())
5050

51-
print('\n' + 'Done!')
51+
print('\n' + 'Markdown file created!')
5252

5353
elif self.file_type == 'json':
5454
self._converter()
5555

5656
with open(self.file_name + '.' + self.file_type, 'w') as json_file:
5757
json.dump(self._dict_repo_template(), json_file, indent=4)
5858

59-
print('\n' + 'Done!')
59+
print('\n' + 'JSON file created!')
6060
elif self.file_type == 'rst':
6161
raise NotImplementedError("Coming soon")
6262
else:
@@ -168,15 +168,15 @@ def write(self):
168168
with open('CHANGELOG.md', 'w') as md_file:
169169
md_file.writelines(self._converter())
170170

171-
print('\n' + 'Done!')
171+
print('\n' + 'Markdown file created!')
172172

173173
elif self.file_type == 'json':
174174
self._converter()
175175

176176
with open(self.file_name + '.' + self.file_type, 'w') as json_file:
177177
json.dump(self._dict_repo_template(), json_file, indent=4)
178178

179-
print('\n' + 'Done!')
179+
print('\n' + 'JSON file created!')
180180
elif self.file_type == 'rst':
181181
raise NotImplementedError("Coming soon")
182182
else:

0 commit comments

Comments
 (0)