Fix log message in salt.utils.gitfs

This needed to be using the config overlay function and not referencing
the attribute directly.
This commit is contained in:
Erik Johnson 2017-10-24 17:25:56 -05:00
parent 09ddfd0c08
commit bc9cd65496
No known key found for this signature in database
GPG key ID: 5E5583C437808F3F

View file

@ -437,7 +437,7 @@ class GitProvider(object):
return root_dir
log.error(
'Root path \'%s\' not present in %s remote \'%s\', '
'skipping.', self.root, self.role, self.id
'skipping.', self.root(), self.role, self.id
)
return None