Merge pull request #141 from CGenie/cgenie/syntax-fixes

Fix wrong variable in riaks.py
This commit is contained in:
Jędrzej Nowak 2015-09-10 12:39:56 +02:00
commit 7b3fb97bfe
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