Skip to content

Commit

Permalink
Merge pull request #68 from viralpraxis/fix-wrong-debug-path-inspecti…
Browse files Browse the repository at this point in the history
…on-escape

Fix wrong debug `path` inspection escape
  • Loading branch information
viralpraxis authored Dec 9, 2024
2 parents d5ca32a + 6f689ca commit 7040b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rubocop/thread_safety/inject.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def self.defaults!
path = CONFIG_DEFAULT.to_s
hash = ConfigLoader.__send__(:load_yaml_configuration, path)
config = Config.new(hash, path).tap(&:make_excludes_absolute)
puts "configuration from \#{path}" if ConfigLoader.debug?
puts "configuration from #{path}" if ConfigLoader.debug?
config = ConfigLoader.merge_with_default(config, path)
ConfigLoader.instance_variable_set(:@default_configuration, config)
end
Expand Down

0 comments on commit 7040b35

Please sign in to comment.