Skip to content

Commit 34cd0f7

Browse files
author
Richard Jones
committed
clean up digested_file_types [SF#1268303]
1 parent 090c221 commit 34cd0f7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ Fixed:
6363
- timezone now applied to date for pretty-format (sf bug 1406861)
6464
- fix mangling of "_" in mail Subject class name (sf bug 1413852)
6565
- catch bad classname in URL (related to sf bug 1240541)
66+
- clean up digested_file_types (sf bug 1268303)
6667

6768

6869
2005-10-07 0.8.5

roundup/install_util.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,16 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: install_util.py,v 1.10 2004-02-11 23:55:08 richard Exp $
18+
# $Id: install_util.py,v 1.11 2006-01-25 03:11:43 richard Exp $
1919

2020
"""Support module to generate and check fingerprints of installed files.
2121
"""
2222
__docformat__ = 'restructuredtext'
2323

2424
import os, sha, shutil
2525

26-
# ".filter", ".index", ".item", ".newitem" are roundup-specific
27-
sgml_file_types = [".xml", ".ent", ".html", ".filter", ".index", ".item", ".newitem"]
28-
hash_file_types = [".py", ".sh", ".conf", ".cgi", '']
26+
sgml_file_types = [".xml", ".ent", ".html"]
27+
hash_file_types = [".py", ".sh", ".conf", ".cgi"]
2928
slast_file_types = [".css"]
3029

3130
digested_file_types = sgml_file_types + hash_file_types + slast_file_types

0 commit comments

Comments
 (0)