Fix cut-off line
Commit 6e5fbebc
introduced a cut-off line. Fixing that.
All tests ran successfully.
Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
This commit is contained in:
parent
a134301ac5
commit
925a5bcae1
@ -134,7 +134,8 @@ class BaseRepository(CustomConfig.ConfigHelperMixin, object):
|
||||
|
||||
It is disabled by either setting the whole repository
|
||||
'readonly' or by using the 'createfolders' setting."""
|
||||
return (not self._readonly) and self.getconfboolean('createfolders', Tr
|
||||
return (not self._readonly) and \
|
||||
self.getconfboolean('createfolders', True)
|
||||
|
||||
def makefolder(self, foldername):
|
||||
"""Create a new folder"""
|
||||
|
Loading…
Reference in New Issue
Block a user