mirror of
https://github.com/frappe/bench.git
synced 2024-11-17 02:25:16 +00:00
Merge pull request #1235 from rtdany10/patch-2
fix: PosixPath object has no attribute 'rstrip'
This commit is contained in:
commit
f5792f7305
@ -9,7 +9,6 @@ patch and try again later.
|
|||||||
Corresponding changes in frappe/frappe via https://github.com/frappe/frappe/pull/15060
|
Corresponding changes in frappe/frappe via https://github.com/frappe/frappe/pull/15060
|
||||||
"""
|
"""
|
||||||
import os
|
import os
|
||||||
import shutil
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
import click
|
import click
|
||||||
@ -40,7 +39,7 @@ def execute(bench_path):
|
|||||||
os.makedirs(new_directory)
|
os.makedirs(new_directory)
|
||||||
|
|
||||||
for archived_site_path in old_directory.glob("*"):
|
for archived_site_path in old_directory.glob("*"):
|
||||||
shutil.move(archived_site_path, new_directory)
|
archived_site_path.rename(new_directory)
|
||||||
|
|
||||||
click.secho(f"Archived sites are now stored under {new_directory}")
|
click.secho(f"Archived sites are now stored under {new_directory}")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user