Skip to content

Commit 821d8ec

Browse files
author
Richard Jones
committed
remove unused, deprecated import
1 parent ce009cb commit 821d8ec

File tree

5 files changed

+35
-36
lines changed

5 files changed

+35
-36
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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-
2009-03-?? 1.4.9 (r??)
4+
2009-08-10 1.4.9 (r4340)
55

66
Fixes:
77

doc/announcement.txt

Lines changed: 16 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
1-
I'm proud to release version 1.4.8 of Roundup.
2-
3-
This release fixes some regressions:
4-
5-
- bug introduced into hyperdb filter (issue 2550505)
6-
- bug introduced into CVS export and view (issue 2550529)
7-
- bugs introduced in the migration to the email package (issue 2550531)
8-
9-
And adds a couple of other fixes:
10-
11-
- handle bogus pagination values (issue 2550530)
12-
- fix TLS handling with some SMTP servers (issues 2484879 and 1912923)
13-
14-
15-
Though some new features made it in also:
16-
17-
- Provide a "no selection" option in web interface selection widgets
18-
- Debug logging now uses the logging module rather than print
19-
- Allow CGI frontend to serve XMLRPC requests.
20-
- Added XMLRPC actions, as well as bridging CGI actions to XMLRPC actions.
21-
- Optimized large file serving via mod_python / sendfile().
22-
- Support resuming downloads for (large) files.
1+
I'm proud to release version 1.4.9 of Roundup which fixes some bugs:
2+
3+
- fixed action taken in response to invalid GET request
4+
- fixed classic tracker template to submit POST requests when appropriate
5+
- fix problems with french and german locale files (issue 2550546)
6+
- Run each message of the mail-gateway in a separate transaction,
7+
see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/9500
8+
- fix problem with bounce-message if incoming mail has insufficient
9+
privilege, e.g., user not existing (issue 2550534)
10+
- fix construction of individual messages to nosy recipents with
11+
attachments (issue 2550568)
12+
- re-order sqlite imports to handle multiple installed versions (issue
13+
2550570)
14+
- don't show entire history by default
15+
(fixes http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540629)
16+
- remove use of string exception
2317

2418
If you're upgrading from an older version of Roundup you *must* follow
2519
the "Software Upgrade" guidelines given in the maintenance documentation.

roundup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '1.4.8'
71+
__version__ = '1.4.9'
7272

7373
# vim: set filetype=python ts=4 sw=4 et si

roundup/backends/back_postgresql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'''Postgresql backend via psycopg for Roundup.'''
1010
__docformat__ = 'restructuredtext'
1111

12-
import os, shutil, popen2, time
12+
import os, shutil, time
1313
try:
1414
import psycopg
1515
from psycopg import QuotedString

setup.py

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -101,17 +101,22 @@ def main():
101101
description="A simple-to-use and -install issue-tracking system"
102102
" with command-line, web and e-mail interfaces. Highly"
103103
" customisable.",
104-
long_description='''
105-
1.4.8 fixes some regressions:
106-
107-
- bug introduced into hyperdb filter (issue 2550505)
108-
- bug introduced into CVS export and view (issue 2550529)
109-
- bugs introduced in the migration to the email package (issue 2550531)
110-
111-
And adds a couple of other fixes:
112-
113-
- handle bogus pagination values (issue 2550530)
114-
- fix TLS handling with some SMTP servers (issues 2484879 and 1912923)
104+
long_description='''This version of Roundup fixes some bugs:
105+
106+
- fixed action taken in response to invalid GET request
107+
- fixed classic tracker template to submit POST requests when appropriate
108+
- fix problems with french and german locale files (issue 2550546)
109+
- Run each message of the mail-gateway in a separate transaction,
110+
see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/9500
111+
- fix problem with bounce-message if incoming mail has insufficient
112+
privilege, e.g., user not existing (issue 2550534)
113+
- fix construction of individual messages to nosy recipents with
114+
attachments (issue 2550568)
115+
- re-order sqlite imports to handle multiple installed versions (issue
116+
2550570)
117+
- don't show entire history by default
118+
(fixes http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540629)
119+
- remove use of string exception
115120
116121
If you're upgrading from an older version of Roundup you *must* follow
117122
the "Software Upgrade" guidelines given in the maintenance documentation.

0 commit comments

Comments
 (0)