From: Lucas Di Pentima Date: Wed, 12 Apr 2017 16:34:49 +0000 (-0300) Subject: 11341: Fixed log message X-Git-Tag: 1.1.0~311^2 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/4431b9c71fc08955a89d1af70de3a8d5174c6e9f 11341: Fixed log message --- diff --git a/sdk/python/arvados/commands/put.py b/sdk/python/arvados/commands/put.py index ba78eb5333..42510754ab 100644 --- a/sdk/python/arvados/commands/put.py +++ b/sdk/python/arvados/commands/put.py @@ -681,7 +681,7 @@ class ArvPutUploadJob(object): self._cache_file = open(cache_filepath, 'a+') else: # --no-resume means start with a empty cache file. - self.logger.info("Creating new cache file create at {}".format(cache_filepath)) + self.logger.info("Creating new cache file at {}".format(cache_filepath)) self._cache_file = open(cache_filepath, 'w+') self._cache_filename = self._cache_file.name self._lock_file(self._cache_file)