Merge pull request #3113 from InfinityPacer/feature/module

This commit is contained in:
jxxghp
2024-11-15 21:59:50 +08:00
committed by GitHub
+1 -1
View File
@@ -39,7 +39,7 @@ class Rclone(StorageBase):
path = Path(filepath) path = Path(filepath)
if not path.parent.exists(): if not path.parent.exists():
path.parent.mkdir(parents=True) path.parent.mkdir(parents=True)
path.write_text(conf.get('content')) path.write_text(conf.get('content'), encoding='utf-8')
@staticmethod @staticmethod
def __get_hidden_shell(): def __get_hidden_shell():