Skip to content

Commit a3126c4

Browse files
committed
Fixed #217 - add the "Completed" word once the generation is completed.
Also update the version to 2.0.4.
1 parent 6757e3e commit a3126c4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

about_code_tool/about.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
on_windows = 'win32' in sys.platform
5050
UNC_PREFIX = u'\\\\?\\'
5151

52-
__version__ = '2.0.3'
52+
__version__ = '2.0.4'
5353

5454
# See http://dejacode.org
5555
__about_spec_version__ = '1.0'
@@ -1494,6 +1494,7 @@ def main(parser, options, args):
14941494
or (os.path.exists(output_path) and overwrite)):
14951495
collector = Collector(input_path)
14961496
collector.write_to_csv(output_path)
1497+
print("Completed.")
14971498
if collector.errors:
14981499
print('%d errors detected.' % len(collector.errors))
14991500
if collector.warnings:

about_code_tool/genabout.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
import about
4141

4242

43-
__version__ = '2.0.3'
43+
__version__ = '2.0.4'
4444

4545
__copyright__ = """
4646
Copyright (c) 2013-2015 nexB Inc. All rights reserved.
@@ -894,6 +894,7 @@ def main(parser, options, args):
894894
output_path)
895895
gen.write_licenses(license_list_context)
896896

897+
print("Completed.")
897898
gen.warnings_errors_summary()
898899
print('Warnings: %s' % len(gen.warnings))
899900
print('Errors: %s' % len(gen.errors))

about_code_tool/genattrib.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
logger.addHandler(handler)
4444
file_logger = logging.getLogger(__name__ + '_file')
4545

46-
__version__ = '2.0.3'
46+
__version__ = '2.0.4'
4747

4848
__about_spec_version__ = '1.0.0' # See http://dejacode.org
4949

@@ -293,6 +293,7 @@ def main(parser, options, args):
293293
print("Problem occurs. Attribution was not generated.")
294294
print(e)
295295

296+
print("Completed.")
296297
# Remove the previous log file if exist
297298
log_path = join(dirname(output_path), LOG_FILENAME)
298299
if exists(log_path):

0 commit comments

Comments
 (0)