From 88c59f373574473e757948ee6f70fdbce09e05f0 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 6 Jan 2010 17:37:49 -0800 Subject: Change debug output a bit --- src/fedpkg/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/fedpkg/__init__.py b/src/fedpkg/__init__.py index 53600bd..39166e6 100644 --- a/src/fedpkg/__init__.py +++ b/src/fedpkg/__init__.py @@ -218,6 +218,7 @@ class PackageModule: def __init__(self, path=os.getcwd()): # Initiate a PackageModule object in a given path # Set some global variables used throughout + log.debug('Creating module object from %s' % path) self.path = path self.lookaside = LOOKASIDE self.lookasidehash = LOOKASIDEHASH @@ -356,7 +357,6 @@ class PackageModule: # Get a list of files in the path we're looking at files = os.listdir(self.path) # Search the files for the first one that ends with ".spec" - log.debug('Looking through files: %s' % ' '.join(files)) for f in files: if f.endswith('.spec'): return f -- cgit