GCS: the slash is a separator, and not part of the directory name itself.

This commit is contained in:
Sybren A. Stüvel 2018-01-26 14:58:42 +01:00
parent de1c227ccd
commit de1eab4596

View File

@ -51,7 +51,7 @@ class GoogleCloudStorageBucket(Bucket):
backend_name = 'gcs'
def __init__(self, name: str, subdir='_/') -> None:
def __init__(self, name: str, subdir='_') -> None:
super().__init__(name=name)
self._log = logging.getLogger(f'{__name__}.GoogleCloudStorageBucket')