Fix silly error

This commit is contained in:
Mike Place 2016-08-16 11:05:18 +09:00
parent 3646cf1afa
commit fb8a12d677

View file

@ -790,7 +790,7 @@ def push(path, keep_symlinks=False, upload_path=None):
load_path_split_drive = os.path.splitdrive(load_path_normal)[1:]
# Finally, split the remaining path into a list for delivery to the master
load_path_list = os.path.split(load_path)
load_path_list = os.path.split(load_path_split_drive)
load = {'cmd': '_file_recv',
'id': __opts__['id'],