From 3d7e47c8ab279ead67bbe35a76e85a9107b06c9c Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 26 Jun 2010 21:08:58 -0400 Subject: [PATCH] Fix YAML saving in export_mysql. --- sitecore/prof/export_mysql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sitecore/prof/export_mysql.py b/sitecore/prof/export_mysql.py index a7701c5..52167f6 100644 --- a/sitecore/prof/export_mysql.py +++ b/sitecore/prof/export_mysql.py @@ -236,4 +236,4 @@ Example: finally: db.disconnect() - yaml.save(db, profs) + yaml.dump(open(prof_file, 'w'), profs) -- 2.26.2