Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/pybin/tools.py

    r84b4d607 r5ea5b28  
    7979def diff( lhs, rhs ):
    8080        # diff the output of the files
    81         diff_cmd = ("diff --ignore-all-space --text "
    82                                 "--ignore-blank-lines "
     81        diff_cmd = ("diff --text "
     82#                               "--ignore-all-space "
     83#                               "--ignore-blank-lines "
    8384                                "--old-group-format='\t\tmissing lines :\n"
    8485                                "%%<' \\\n"
     
    246247        if column:
    247248                cmd = "%s 2> /dev/null" % column
     249                print(cmd)
    248250                proc = Popen(cmd, stdin=PIPE, stderr=None, shell=True)
    249                 proc.communicate(input=text + "\n")
     251                proc.communicate(input=text)
    250252        else:
    251253                print(text)
Note: See TracChangeset for help on using the changeset viewer.