Lint - newline before def

This commit is contained in:
Petr Messner 2015-11-06 00:41:38 +01:00 committed by rallytime
parent 9e5c16d4da
commit 7baccc1b05

View file

@ -555,8 +555,9 @@ class Client(object):
if url_data.scheme == 's3':
try:
import salt.utils.s3
def s3_opt(key, default=None):
'''get value of s3.<key> from Minion config or from Pillar'''
'''Get value of s3.<key> from Minion config or from Pillar'''
if 's3.' + key in self.opts:
return self.opts['s3.' + key]
try: