From 78a7c9bcda9fd4b24a8018335744ceac7ac4c530 Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Sun, 17 Feb 2019 22:28:05 +0100 Subject: [PATCH] fix c/p error --- builders/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/builder.py b/builders/builder.py index d2af1ad..047ddb8 100644 --- a/builders/builder.py +++ b/builders/builder.py @@ -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)