Changeset 30

Show
Ignore:
Timestamp:
01/08/08 02:57:44 (16 years ago)
Author:
broder
Message:

checksums.py should output rmd160 instead of ripemd160 (yes, I know, I'm making pointless commits, but I want to get this hook working)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/locker-bin/checksums.py

    r5 r30  
    99        print "checksums\t\tmd5 %s \\" % hashlib.md5(f).hexdigest() 
    1010        print "\t\t\t\tsha1 %s \\" % hashlib.sha1(f).hexdigest() 
    11         print "\t\t\t\tripemd160 %s" % hashlib.new('rmd160', f).hexdigest() 
     11        print "\t\t\t\trmd160 %s" % hashlib.new('rmd160', f).hexdigest()