From 016febc40a434d400f4a94ce49a7ed900d153789 Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Mon, 11 Jul 2011 13:22:19 -0700 Subject: [PATCH] Cleanup: new-style raise. --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.py b/common.py index e91677c..d8e5c75 100644 --- a/common.py +++ b/common.py @@ -98,7 +98,7 @@ def setup(): template = 'test-{random}-' prefix = choose_bucket_prefix(template=template) if prefix == '': - raise RuntimeError, "Empty Prefix! Aborting!" + raise RuntimeError("Empty Prefix! Aborting!") defaults = config.s3.defaults for section in config.s3.keys():