[SCM] ci-tooling packaging branch, master, updated. a7d8e8a452ebd29010de446c6ebe754d11453bb8
Harald Sitter
apachelogger-guest at moszumanska.debian.org
Mon Mar 23 11:28:55 UTC 2015
Gitweb-URL: http://git.debian.org/?p=pkg-kde/ci-tooling.git;a=commitdiff;h=a75a544
The following commit has been merged in the master branch:
commit a75a544ad7e60674511e8d9e8aafa4073da37463
Author: Harald Sitter <sitter at kde.org>
Date: Mon Mar 23 12:28:38 2015 +0100
defer const_missing to super if we don't have a key in to_h
---
lib/lsb.rb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/lsb.rb b/lib/lsb.rb
index 98f1b6e..a8fbc26 100644
--- a/lib/lsb.rb
+++ b/lib/lsb.rb
@@ -6,7 +6,8 @@ module LSB
@file = '/etc/lsb-release'
def self.const_missing(name)
- to_h[name] if to_h.key?(name)
+ return to_h[name] if to_h.key?(name)
+ super(name)
end
module_function
--
ci-tooling packaging
More information about the pkg-kde-commits
mailing list