Skip to content

Commit ea30c31

Browse files
committed
Fix a bug
1 parent 83b84c5 commit ea30c31

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/LocalCluster.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ def ExecuteCMD(self, cmd, *args, on_cluster = False, **kwargs):
1515
"""
1616

1717
# Override the value of on_cluster
18-
super().ExecuteCMD(cmd, *args, on_cluster = False, **kwargs)
18+
return super().ExecuteCMD(cmd, *args, on_cluster = False, **kwargs)
1919

2020
def copy_file(self, source, destination, server_source = False, server_dest = False, **kwargs):
2121
"""
2222
Copy the files ignoring if the cluster is used.
2323
"""
2424

25-
super().copy_file(source, destination, server_source = False, server_dest = False, **kwargs)
25+
return super().copy_file(source, destination, server_source = False, server_dest = False, **kwargs)

0 commit comments

Comments
 (0)