Skip to content

Commit

Permalink
Merge pull request #73 from xfalcox/ruby-3.2-deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmbake authored Feb 26, 2023
2 parents 2f7a04b + 7195798 commit edcf069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def fail_auth(reason)
end
def load_user_descriptions
file_path = "#{File.expand_path(File.dirname(__FILE__))}/ldap_users.yml"
return nil unless File.exists?(file_path)
return nil unless File.exist?(file_path)
return YAML.load_file(file_path)
end
end
Expand Down

0 comments on commit edcf069

Please sign in to comment.