Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dax/jmc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--profile_jmc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/profile_jmc.py b/profile_jmc.py
index 4260933..6e81e84 100644
--- a/profile_jmc.py
+++ b/profile_jmc.py
@@ -21,7 +21,7 @@
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
-import profile
+import cProfile
import jmc.runner as runner
-profile.run("runner.main()", "jmc.prof")
+cProfile.run("runner.main()", "jmc.prof")