repository/Base.py Changed indentation

I joined the lines to avoid indentantion warning
This commit is contained in:
Rodolfo García Peñas (kix) 2020-08-30 14:14:45 +02:00
parent 2248a85f64
commit ad0920de72

View File

@ -154,8 +154,7 @@ class BaseRepository(CustomConfig.ConfigHelperMixin):
It is disabled by either setting the whole repository
'readonly' or by using the 'createfolders' setting."""
return (not self._readonly) and \
self.getconfboolean('createfolders', True)
return (not self._readonly) and self.getconfboolean('createfolders', True)
def makefolder(self, foldername):
"""Create a new folder."""