mirror of https://github.com/KLayout/klayout.git
Merge pull request #1711 from BWsix/replace-removed-ruby-function
Replace "removed" Ruby method "file.exists?" with "file.exist?"
This commit is contained in:
commit
879239d841
|
|
@ -122,7 +122,7 @@ module DRC
|
|||
|
||||
# Apply waive DB if possible
|
||||
wdb_file = rdb_file + ".w"
|
||||
if File.exists?(wdb_file)
|
||||
if File.exist?(wdb_file)
|
||||
begin
|
||||
wdb = RBA::ReportDatabase::new
|
||||
wdb.load(wdb_file)
|
||||
|
|
|
|||
Loading…
Reference in New Issue