mgr/volumes: remove unused semicolon

Signed-off-by: jindengke <jindengke@inspur.com>
This commit is contained in:
靳登科 2021-04-10 09:04:47 +08:00
parent 22e63b72de
commit b3ed88ef61

View File

@ -95,7 +95,7 @@ def copy_file(fs, src, dst, mode, cancel_check=None):
"""
src_fd = dst_fd = None
try:
src_fd = fs.open(src, os.O_RDONLY);
src_fd = fs.open(src, os.O_RDONLY)
dst_fd = fs.open(dst, os.O_CREAT | os.O_TRUNC | os.O_WRONLY, mode)
except cephfs.Error as e:
if src_fd is not None: