diff options
author | 2013-01-31 23:03:40 +0100 | |
---|---|---|
committer | 2013-01-31 23:03:40 +0100 | |
commit | ba372f046e085618e847c6cece0884fa426c5aa8 (patch) | |
tree | 0f8a4f352674d7ebdfaf9300e5fd2dda7cd3a47e /pavement.py | |
parent | added actionbar, two-column dashboard (diff) | |
download | pyload-ba372f046e085618e847c6cece0884fa426c5aa8.tar.xz |
added some icons, placeholder for left menu
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 4 |
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(): |