Minor cleanup.

This commit is contained in:
Brian Ernst 2020-08-12 15:05:50 -07:00
parent 3adaf471c1
commit 3aa1373758
3 changed files with 11 additions and 7 deletions

View file

@ -19,7 +19,7 @@ class P4SyncMissing:
fail_if_no_p4()
#http://docs.python.org/library/optparse.html
#http://docs.python.org/library/optparse.html
parser = optparse.OptionParser( )
parser.add_option( "-d", "--dir", dest="directory", help="Desired directory to crawl.", default=None )
@ -93,7 +93,8 @@ class P4SyncMissing:
threads.append( t )
t.start( )
c.writeflush( " Done." )
if not options.quiet:
c.writeflush( " Done." )
make_drive_upper = True if os.name == 'nt' or sys.platform == 'cygwin' else False