Skip to content

Commit 1ee5ba6

Browse files
fix(DefaultUploadFolder): get UPLOAD_FOLDER from config
1 parent af4c97e commit 1ee5ba6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/opengeodeweb_back/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def run_server(app: Flask) -> None:
155155
app.config.update(UPLOAD_FOLDER=args.upload_folder_path)
156156
app.config.update(MINUTES_BEFORE_TIMEOUT=args.timeout)
157157
flask_cors.CORS(app, origins=args.allowed_origins)
158-
print(f"{args=}", flush=True, sep="\n")
158+
print(f"{args=}", flush=True)
159159

160160
db_filename: str = app.config.get("DATABASE_FILENAME") or "project.db"
161161
db_path = os.path.join(str(args.data_folder_path), db_filename)

0 commit comments

Comments
 (0)