From b8b3cd349e69ba15b7f8f834ac413799cb18c410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Thu, 13 Feb 2020 11:10:40 +0100 Subject: [PATCH] Fix warning of unsuppoted attribute --- src/Utilities/copy.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Utilities/copy.jl b/src/Utilities/copy.jl index a68d527b38..e35ab42a2d 100644 --- a/src/Utilities/copy.jl +++ b/src/Utilities/copy.jl @@ -137,8 +137,8 @@ function _pass_attributes(dest::MOI.ModelLike, src::MOI.ModelLike, # As starting values are simply *hints* for the optimization, not # supporting them gives a warning, not an error if !MOI.supports(dest, attr, supports_args...) - @warn("$attr is not supported by $(typeof(dest)). This ", - "information will be discarded.") + @warn("$attr is not supported by $(typeof(dest)). This " * + "information will be discarded.") continue end end