mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-17 19:48:31 +02:00
Remove try/except on copytree since I'm no longer using the same
This commit is contained in:
parent
2d142eb995
commit
6b30b0c760
1 changed files with 1 additions and 4 deletions
|
@ -93,10 +93,7 @@ def we_use_the_config(config_file, temp_dir, working_dir):
|
|||
# Copy all of the journals over
|
||||
journal_source = os.path.join(working_dir, "data", "journals")
|
||||
journal_dest = os.path.join(temp_dir.name, "features", "journals")
|
||||
try:
|
||||
shutil.copytree(journal_source, journal_dest)
|
||||
except FileExistsError:
|
||||
pass # Happens when specifying config files multiple times
|
||||
|
||||
# @todo get rid of this by using default config values
|
||||
# merge in version number
|
||||
|
|
Loading…
Add table
Reference in a new issue