We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2adc26 commit 6c23e5eCopy full SHA for 6c23e5e
1 file changed
meld/meldapp.py
@@ -303,11 +303,11 @@ def cleanup():
303
304
def make_file_from_command_line(arg):
305
f = command_line.create_file_for_arg(arg)
306
- if not f.query_exists():
+ if not f.query_exists(cancellable=None):
307
# May be a relative path with ':', misinterpreted as a URI
308
cwd = Gio.File.new_for_path(command_line.get_cwd())
309
relative = Gio.File.resolve_relative_path(cwd, arg)
310
- if relative.query_exists():
+ if relative.query_exists(cancellable=None):
311
return relative
312
# Return the original arg for a better error message
313
return f
0 commit comments