summaryrefslogtreecommitdiffstats
path: root/Lib/pstats.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/pstats.py')
-rw-r--r--Lib/pstats.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py
index c1183f9..20a6cd1 100644
--- a/Lib/pstats.py
+++ b/Lib/pstats.py
@@ -538,6 +538,7 @@ if __name__ == '__main__':
class ProfileBrowser(cmd.Cmd):
def __init__(self, profile=None):
+ cmd.Cmd.__init__(self)
self.prompt = "% "
if profile:
self.stats = Stats(profile)