Fix wrong variable in riaks.py

This commit is contained in:
Przemyslaw Kaminski 2015-09-10 12:36:32 +02:00
parent ffbe4d2db7
commit f7aa04fa28
2 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,7 @@ def setup_riak():
local_errors = validation.validate_resource(r)
if local_errors:
has_errors = True
print 'ERROR: %s: %s' % (r.name, errors)
print 'ERROR: %s: %s' % (r.name, local_errors)
if has_errors:
print "ERRORS"

View File

@ -12,6 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
class SolarError(Exception):
pass