Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/configs/user_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import configparser
import os
import time
from pathlib import Path

from app.models.singleton import Singleton
from app.services.crypto.crypto import decryption
Expand All @@ -25,7 +26,7 @@ def __init__(self):
if not os.path.exists(AppConfig.Env.user_config_path):
os.makedirs(AppConfig.Env.user_config_path)
if not os.path.exists(AppConfig.Env.user_config_file):
os.system(r'touch {}'.format(AppConfig.Env.user_config_file))
Path.touch(Path(AppConfig.Env.user_config_file))
self.config = configparser.ConfigParser()
self.config.read(AppConfig.Env.user_config_file)
if not self.config.has_section('USER'):
Expand Down
2 changes: 1 addition & 1 deletion app/resources/custom_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class HelpPage:
page = {
'update': {
'version': '2.2.3',
'version': '2.2.4',
'1': 'CLI supports to perform multi-threading upload for file/folders',
'2': 'CLI supports to perform resumable upload for single file',
},
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "app"
version = "2.2.3"
version = "2.2.4"
description = "This service is designed to support pilot platform"
authors = ["Indoc Research"]

Expand Down