Skip to content

Commit

Permalink
deps: print 7 character short shas instead of 6 characters (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
igrayson authored and cmcarthur committed Apr 21, 2017
1 parent fe4647f commit d9f165d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dbt/task/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ def __pull_repo(self, repo, branch=None):
if exists:
if start_sha == end_sha:
logger.info(' Already at {}, nothing to do.'.format(
start_sha[:6]))
start_sha[:7]))
else:
logger.info(' Updated checkout from {} to {}.'.format(
start_sha[:6], end_sha[:6]))
start_sha[:7], end_sha[:7]))
else:
logger.info(' Checked out at {}.'.format(end_sha[:6]))
logger.info(' Checked out at {}.'.format(end_sha[:7]))

return folder

Expand Down

0 comments on commit d9f165d

Please sign in to comment.