Use triple double quotes instead of triple single quotes

This commit is contained in:
Paul Romano 2015-04-16 12:35:37 -05:00
parent eb38ee3b88
commit 1c3ac71bab

View file

@ -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*" "