]> git.donarmstrong.com Git - dak.git/commitdiff
Use print_escaped_text, not print_formatted_text.
authorJoerg Jaspert <joerg@debian.org>
Sun, 30 Dec 2007 21:19:51 +0000 (22:19 +0100)
committerJoerg Jaspert <joerg@debian.org>
Sun, 30 Dec 2007 21:19:51 +0000 (22:19 +0100)
ChangeLog
dak/examine_package.py

index 745a8bd436d59ba08a30a8b2a3a73fd6bd193628..398a676898f34224a4ffced65fdc3738c1e0b5d4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -23,6 +23,7 @@
        easily know if we want html or not and just DTRT
        (do_lintian): new function
        (check_deb): use it
+       (output_deb_info): Use print_escaped_text, not print_formatted_text.
 
        Also add a variable to see if we want html output. Default is
        disabled, show_new enables it for its use.
index 31c417bac8969682ae9ff0528f8a6e2a66b56275..530d0bc14132cd9be29ff37b762de898563f7603 100755 (executable)
@@ -333,7 +333,7 @@ def output_deb_info(filename):
            else:
                output += escape_if_needed(control.Find(key))
             to_print += output + '\n'
-        print_formatted_text(to_print)
+        print_escaped_text(to_print)
 
 def do_command (command, filename):
     o = os.popen("%s %s" % (command, filename))