summaryrefslogtreecommitdiffstats
path: root/pavement.py
diff options
context:
space:
mode:
Diffstat (limited to 'pavement.py')
-rw-r--r--pavement.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pavement.py b/pavement.py
index 737cc230e..5b8e01260 100644
--- a/pavement.py
+++ b/pavement.py
@@ -248,9 +248,9 @@ def load_icons():
f.close()
from glob import glob
- from shutil import move
+ from shutil import copy
for f in glob("/tmp/fontawesome-webfont.*"):
- move(f, PROJECT_DIR / "module" / "web" / "static" / "fonts")
+ copy(f, PROJECT_DIR / "module" / "web" / "static" / "fonts")
@task
def generate_locale():