--- a/PluginColorString.py Sat Dec 31 13:51:12 2016 +0100 +++ b/PluginColorString.py Thu Mar 30 19:19:13 2017 +0200 @@ -23,7 +23,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "2.2.2" +version = "2.2.3" className = "ColorStringPlugin" packageName = "ColorString" shortDescription = "Insert color as string" @@ -377,7 +377,7 @@ """ Private method to check for a valid RGBA color. - @param name color string to check (string) + @param color color string to check (string) @return flag indicating a valid RGBA color (boolean) and a list with the RGBA components of the color (three or four integers) """ @@ -399,3 +399,6 @@ rgba.append(c) return True, rgba + +# +# eflag: noqa = M801