Kiln » Fog Creek
Clone URL:  

Removed unneeded semicolon.

Changeset 6cdd04ab5631

Parent 69f5fafe0837

by David Golub

Changes to one file · Browse files at 6cdd04ab5631 Showing diff from parent 69f5fafe0837 Diff from another changeset...

Change 1 of 1 Show Entire File kbfiles/​bfutil.py Stacked
 
367
368
369
370
 
371
372
373
 
367
368
369
 
370
371
372
373
@@ -367,7 +367,7 @@
   def hashfile(file):   if not os.path.exists(file): - return ''; + return ''   hasher = util.sha1('')   with open(file, 'rb') as fd:   for data in blockstream(fd):