Skip to content
  • rswindell's avatar
    Updated JS warning when using old/deprecated file open mode 'e': · aad09443
    rswindell authored
        "Deprecated file open mode: 'e'"
    If this is your script generating this warning, either remove the 'e' from
    the File open() mode string (it had no effect anyway) or change to 'x' to
    get the real/working exclusive-open functionality (added in v3.17).
    aad09443