exists -proc -> exists -command

Test was failing for `sqlite3.open`.
This commit is contained in:
df 2020-12-14 14:30:02 +00:00
parent 0f678564b8
commit 9779b82bd1
1 changed files with 3 additions and 3 deletions

View File

@ -3,9 +3,9 @@ source /mod/webif/lib/setup
package require xconv
if {![exists -proc class]} { package require oo }
if {![exists -proc sqlite3.open]} { package require sqlite3 }
if {![exists -proc binary]} { package require binary }
if {![exists -command class]} { package require oo }
if {![exists -command sqlite3.open]} { package require sqlite3 }
if {![exists -command binary]} { package require binary }
class system {}