File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -847,6 +847,7 @@ def _hasher(algorithm='md5'):
847847
848848
849849def _manifest_line (filename , algorithm = 'md5' ):
850+ LOGGER .info ("Generating checksum for file %s" , filename )
850851 with open (filename , 'rb' ) as fh :
851852 m = _hasher (algorithm )
852853
@@ -892,7 +893,7 @@ def _make_opt_parser():
892893 parser .add_option ('--processes' , action = 'store' , type = "int" ,
893894 dest = 'processes' , default = 1 ,
894895 help = 'parallelize checksums generation and verification' )
895- parser .add_option ('--log' , action = 'store' , dest = 'log' )
896+ parser .add_option ('--log' , action = 'store' , dest = 'log' , help = 'The name of the log file' )
896897 parser .add_option ('--quiet' , action = 'store_true' , dest = 'quiet' )
897898 parser .add_option ('--validate' , action = 'store_true' , dest = 'validate' )
898899 parser .add_option ('--fast' , action = 'store_true' , dest = 'fast' )
You can’t perform that action at this time.
0 commit comments