parent
77fa10304b
commit
3e9169b282
|
|
@ -53,7 +53,7 @@ sqlparse==0.*
|
||||||
sshtunnel==0.*
|
sshtunnel==0.*
|
||||||
typer[all]==0.16.*
|
typer[all]==0.16.*
|
||||||
urllib3==1.26.*; python_version <= '3.9'
|
urllib3==1.26.*; python_version <= '3.9'
|
||||||
urllib3==2.4.*; python_version > '3.9'
|
urllib3==2.5.*; python_version > '3.9'
|
||||||
user-agents==2.2.0
|
user-agents==2.2.0
|
||||||
Werkzeug==3.1.*
|
Werkzeug==3.1.*
|
||||||
WTForms==3.1.*; python_version <= '3.9'
|
WTForms==3.1.*; python_version <= '3.9'
|
||||||
|
|
|
||||||
|
|
@ -346,7 +346,7 @@ def get_application_state():
|
||||||
connection_info['open_file_name']):
|
connection_info['open_file_name']):
|
||||||
file_path = get_complete_file_path(
|
file_path = get_complete_file_path(
|
||||||
connection_info['open_file_name'])
|
connection_info['open_file_name'])
|
||||||
file_deleted = False if os.path.exists(file_path) else True
|
file_deleted = False if file_path else True
|
||||||
connection_info['file_deleted'] = file_deleted
|
connection_info['file_deleted'] = file_deleted
|
||||||
|
|
||||||
if (not file_deleted and connection_info['is_editor_dirty'] and
|
if (not file_deleted and connection_info['is_editor_dirty'] and
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue