~phill-ridout/openlp/fixes-I

« back to all changes in this revision

Viewing changes to openlp/core/common/path.py

  • Committer: Philip Ridout
  • Date: 2019-03-10 21:01:39 UTC
  • Revision ID: phill.ridout@gmail.com-20190310210139-v7uh3bk1hk7we3h7
pathlib cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
        :param onerror: Handler function to handle any errors
79
79
        :rtype: None
80
80
        """
81
 
        shutil.rmtree(str(self), ignore_errors, onerror)
 
81
        shutil.rmtree(self, ignore_errors, onerror)
82
82
 
83
83
 
84
84
def replace_params(args, kwargs, params):