diff --git a/src/Tools/FCFileTools.py b/src/Tools/FCFileTools.py index 961efdc084..15ed557f3a 100644 --- a/src/Tools/FCFileTools.py +++ b/src/Tools/FCFileTools.py @@ -44,7 +44,7 @@ def cpall(dirFrom, dirTo): cpfile(pathFrom, pathTo) fcount = fcount+1 except: - print('Error copying', pathFrom, to, pathTo, '--skipped') + print('Error copying', pathFrom, 'to', pathTo, '--skipped') print(sys.exc_info()[0], sys.exc_info()[1]) else: if verbose: print('copying dir', pathFrom, 'to', pathTo) @@ -83,7 +83,7 @@ def cpallWithFilter(dirFrom, dirTo,MatchList): cpfile(pathFrom, pathTo) fcount = fcount+1 except: - print('Error copying', pathFrom, to, pathTo, '--skipped') + print('Error copying', pathFrom, 'to', pathTo, '--skipped') print(sys.exc_info()[0], sys.exc_info()[1]) else: if verbose: print('copying dir', pathFrom, 'to', pathTo)