This commit is contained in:
Christian Mehlmauer
2013-08-12 22:01:24 +02:00
parent 8896f8bf79
commit d107613e40
3 changed files with 24 additions and 2 deletions

View File

@@ -40,8 +40,12 @@ class WebSite
end
entries.each do |d|
temp = @uri.clone
temp.path = d
begin
temp = @uri.clone
temp.path = d
rescue URI::Error
temp = d
end
return_object << temp.to_s
end
end