From 1c3ac71babfbef768c6eb60dd4d3ff8d77ce035e Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 16 Apr 2015 12:35:37 -0500 Subject: [PATCH] Use triple double quotes instead of triple single quotes --- src/utils/openmc/clean_xml.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/openmc/clean_xml.py b/src/utils/openmc/clean_xml.py index 437c2df15..619475fa0 100644 --- a/src/utils/openmc/clean_xml.py +++ b/src/utils/openmc/clean_xml.py @@ -66,11 +66,11 @@ def sort_xml_elements(tree): def clean_xml_indentation(element, level=0): - ''' + """ copy and paste from http://effbot.org/zone/elementent-lib.htm#prettyprint it basically walks your tree and adds spaces and newlines so the tree is printed in a nice way - ''' + """ i = "\n" + level*" "