Merge branch 'master' into 7329-empty-block-issue
[arvados.git] / services / fuse / arvados_fuse / fusedir.py
index de12fcce1763764e5ef80e6ef2ce62d70178b9d6..8ffca49601d795fc0622326e04eb219dd3dd0d8d 100644 (file)
@@ -23,6 +23,7 @@ _logger = logging.getLogger('arvados.arvados_fuse')
 # appear as underscores in the fuse mount.)
 _disallowed_filename_characters = re.compile('[\x00/]')
 
+# '.' and '..' are not reachable if API server is newer than #6277
 def sanitize_filename(dirty):
     """Replace disallowed filename characters with harmless "_"."""
     if dirty is None: