aboutsummaryrefslogtreecommitdiffstats
path: root/git_deps/detector.py
diff options
context:
space:
mode:
Diffstat (limited to 'git_deps/detector.py')
-rw-r--r--git_deps/detector.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git_deps/detector.py b/git_deps/detector.py
index e64d17f..beeb221 100644
--- a/git_deps/detector.py
+++ b/git_deps/detector.py
@@ -168,8 +168,8 @@ class DependencyDetector(object):
dependent_sha1 = dependent.hex
if dependent_sha1 not in self.dependencies:
- self.logger.debug(' New dependent: %s (%s)' %
- (dependent_sha1[:8], GitUtils.oneline(dependent)))
+ self.logger.debug(' New dependent: %s' %
+ GitUtils.commit_summary(dependent))
self.dependencies[dependent_sha1] = {}
self.notify_listeners('new_dependent', dependent)