summaryrefslogtreecommitdiff
path: root/examples/performance/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/performance/__init__.py')
-rw-r--r--examples/performance/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/performance/__init__.py b/examples/performance/__init__.py
index f1f59026c..c6244554f 100644
--- a/examples/performance/__init__.py
+++ b/examples/performance/__init__.py
@@ -334,7 +334,7 @@ class Profiler(object):
if len(sys.argv) > 1:
potential_name = sys.argv[1]
try:
- suite = __import__(__name__ + "." + potential_name)
+ __import__(__name__ + "." + potential_name)
except ImportError:
pass
@@ -382,7 +382,7 @@ class Profiler(object):
args.profile = args.profile or args.dump or args.runsnake
if cls.name is None:
- suite = __import__(__name__ + "." + args.name)
+ __import__(__name__ + "." + args.name)
Profiler(args).run()