Changeset b2cee30
- Timestamp:
- Mar 16, 2012, 5:54:39 AM (14 years ago)
- Branches:
- master, space-access, stable, stage
- Children:
- db8a5bc
- Parents:
- 8254020
- git-author:
- Alex Dehnert <adehnert@…> (03/16/12 05:54:39)
- git-committer:
- Alex Dehnert <adehnert@…> (03/16/12 05:54:39)
- File:
-
- 1 edited
-
asadb/groups/diffs.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
asadb/groups/diffs.py
r8254020 rb2cee30 115 115 116 116 for sig_type in self.signatory_types_seen: 117 line += "%20s" % (sig_type, ) 117 anno_sig = sig_type 118 if sig_type in self.interesting_signatories: 119 anno_sig += " " 120 else: 121 anno_sig += "*" 122 line += "%20s" % (anno_sig, ) 118 123 for change_type in change_types: 119 124 if sig_type in self.signatory_type_counts[change_type]: … … 126 131 line += out 127 132 lines.append(line); line = "" 133 134 line = "* Details for this signatory type not included in email." 135 lines.append(line) 128 136 129 137 return "\n".join(lines), care_about
Note: See TracChangeset
for help on using the changeset viewer.