sediff: fix copy-paste error in range_transition rendering

range_transitions never have filenames nor conditionals.
This commit is contained in:
Chris PeBenito 2016-01-07 11:29:11 -05:00
parent 0513f0bb5a
commit 460be62a66

12
sediff
View File

@ -517,18 +517,6 @@ try:
"{0.ruletype} {0.source} {0.target}:{0.tclass} +[{1}] -[{2}]".format(
rule, added_default, removed_default)
try:
rule_string += " {0}".format(self.filename)
except:
pass
rule_string += ";"
try:
rule_string += " [ {0} ]".format(rule.conditional)
except:
pass
print(" * {0}".format(rule_string))
print()