From ab5162c8ab3ef114090824ef74946b54ce4321be Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sat, 31 Jul 2010 09:50:35 -0700 Subject: Fix a hashtype bug --- src/pyfedpkg/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyfedpkg/__init__.py b/src/pyfedpkg/__init__.py index 67df332..89ffb04 100644 --- a/src/pyfedpkg/__init__.py +++ b/src/pyfedpkg/__init__.py @@ -59,7 +59,7 @@ log = logging.getLogger("fedpkg") log.addHandler(h) # Define some helper functions, they start with _ -def _hash_file(file, Hashtype): +def _hash_file(file, hashtype): """Return the hash of a file given a hash type""" try: -- cgit