summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Keating <jkeating@redhat.com>2010-01-06 17:37:49 -0800
committerJesse Keating <jkeating@redhat.com>2010-01-06 17:37:49 -0800
commit88c59f373574473e757948ee6f70fdbce09e05f0 (patch)
treea489e157e93e02163f48c1a67c51d6d4bc5af23b /src
parent6798166726bd4809c696c693d473c0fcd094afb1 (diff)
downloadfedora-packager-88c59f373574473e757948ee6f70fdbce09e05f0.tar.gz
fedora-packager-88c59f373574473e757948ee6f70fdbce09e05f0.tar.xz
fedora-packager-88c59f373574473e757948ee6f70fdbce09e05f0.zip
Change debug output a bit
Diffstat (limited to 'src')
-rw-r--r--src/fedpkg/__init__.py2
1 files changed, 1 insertions, 1 deletions
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