# HG changeset patch # User Paul Boddie # Date 1358626638 -3600 # Node ID 5adaf0d18bcb83c6ac06aa78e7aae1e667f1918c # Parent a30675efb1c235bf7b31bd5f34714ced9319ecb8 Removed legacy method invocation when writing content. diff -r a30675efb1c2 -r 5adaf0d18bcb MoinSupport.py --- a/MoinSupport.py Sat Jan 19 21:14:05 2013 +0100 +++ b/MoinSupport.py Sat Jan 19 21:17:18 2013 +0100 @@ -933,7 +933,7 @@ f = open(os.path.join(self.path, str(next)), "w") try: - f.write(item.as_string()) + f.write(item) finally: f.close()