Skip to content

Commit 6eed4c4

Browse files
author
Richard Jones
committed
fixed reporting of source missing warnings
1 parent 6402089 commit 6eed4c4

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGES.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4+
2010-??-?? 1.4.16
5+
6+
Fixed:
7+
8+
- fixed reporting of source missing warnings
9+
10+
411
2010-07-12 1.4.15
512

613
Fixed:
14+
715
- A bunch of regressions were introduced in the last release making Roundup
816
no longer work in Python releases prior to 2.6
917
- make URL detection a little smarter about brackets per issue2550657
@@ -13,9 +21,11 @@ Fixed:
1321
2010-07-01 1.4.14
1422

1523
Features:
24+
1625
- Preparations for getting 2to3 work, not completed yet. (Richard Jones)
1726

1827
Fixed:
28+
1929
- User input not escaped when a bad template name is supplied (thanks
2030
Benjamin Pollack)
2131
- The email for the first message on an issue was having its In-Reply-To

doc/announcement.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ I'm proud to release version 1.4.15 of Roundup which mostly fixes some
22
regressions in the last release:
33

44
Fixed:
5+
56
- A bunch of regressions were introduced in the last release making Roundup
67
no longer work in Python releases prior to 2.6
78
- make URL detection a little smarter about brackets per issue2550657

roundup/dist/command/build.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,10 @@ def check_manifest():
3232
manifest = [l.strip() for l in f.readlines()]
3333
finally:
3434
f.close()
35-
err = [line for line in manifest if not os.path.exists(line)]
36-
err.sort()
35+
err = set([line for line in manifest if not os.path.exists(line)])
3736
# ignore auto-generated files
38-
if err == ['roundup-admin', 'roundup-demo', 'roundup-gettext',
39-
'roundup-mailgw', 'roundup-server']:
40-
err = []
37+
err = err - set(['roundup-admin', 'roundup-demo', 'roundup-gettext',
38+
'roundup-mailgw', 'roundup-server', 'roundup-xmlrpc-server'])
4139
if err:
4240
n = len(manifest)
4341
print '\n*** SOURCE WARNING: There are files missing (%d/%d found)!'%(

0 commit comments

Comments
 (0)