fix c/p error

This commit is contained in:
Tomas Groth 2019-02-17 22:28:05 +01:00
parent 815ef71a54
commit 78a7c9bcda
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ class Builder(object):
self._print('Copying OpenLP font...')
source = os.path.join(self.source_path, 'core', 'ui', 'fonts', 'OpenLP.ttf')
dest_dir = os.path.join(self.dist_path, 'core', 'ui', 'fonts')
dest = os.path.join(self.dest_dir, 'OpenLP.ttf')
dest = os.path.join(dest_dir, 'OpenLP.ttf')
os.makedirs(dest_dir)
copy(source, dest)