Use Python's subprocess module instead of the eventlet's subprocess as it is not working with Python v3.12

pull/6905/head
Akshay Joshi 2023-10-27 17:23:33 +05:30
parent 3e575e2f43
commit 46a8c1ad6a
1 changed files with 1 additions and 1 deletions

View File

@ -11,8 +11,8 @@ import os
import select
import struct
import config
import subprocess
from sys import platform as _platform
from eventlet.green import subprocess
from config import PG_DEFAULT_DRIVER
from flask import Response, request
from flask import render_template, copy_current_request_context, \