Skip to content

Commit

Permalink
removed laura folder
Browse files Browse the repository at this point in the history
  • Loading branch information
lrodrin committed Oct 15, 2021
1 parent e6288d4 commit 9c40085
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 33 deletions.
32 changes: 0 additions & 32 deletions laura/wetlab2variations/create_ro.py

This file was deleted.

3 changes: 2 additions & 1 deletion rocrate/model/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import urllib.request

from io import IOBase
from pathlib import Path
from urllib.error import HTTPError

from .data_entity import DataEntity
Expand Down Expand Up @@ -110,7 +111,7 @@ def write(self, base_path):
else:
if os.path.isfile(self.source):
out_file_path.parent.mkdir(parents=True, exist_ok=True)
copy(self.source, out_file_path)
shutil.copy(self.source, out_file_path)
else:
if self.fetch_remote:
# Legacy version
Expand Down

0 comments on commit 9c40085

Please sign in to comment.