Skip to content

Commit 923157f

Browse files
author
Richard Jones
committed
fix typo
1 parent 2e5e46a commit 923157f

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGES.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
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-
2006-??-?? 1.0.1
4+
2006-??-?? 1.0.2
5+
Fixed:
6+
- silly typo in scripts/import_sf.py
7+
8+
9+
2006-02-03 1.0.1
510
Feature:
611
- scripts/import_sf.py will import a tracker from Sourceforge.NET
712
- added hasRole() to HTMLUser

scripts/import_sf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def get_url(aid):
4444
location = response.getheader('location')
4545
query = urlparse.urlparse(response.getheader('location'))[-2]
4646
info = dict([param.split('=') for param in query.split('&')])
47-
return DOWNLOAD_TEMPLATE%info
47+
return DL_URL%info
4848

4949
def fetch_files(xml_file, file_dir):
5050
""" Fetch files referenced in the xml_file into the dir file_dir. """

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.86 2006-02-03 05:27:59 richard Exp $
19+
# $Id: setup.py,v 1.87 2006-02-05 02:41:09 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -369,7 +369,7 @@ def main():
369369
'download_url': 'http://sourceforge.net/project/showfiles.php?group_id=31577',
370370
'packages': packagelist,
371371
'classifiers': [
372-
'Development Status :: 4 - Beta',
372+
'Development Status :: 5 - Production/Stable',
373373
'Environment :: Console',
374374
'Environment :: Web Environment',
375375
'Intended Audience :: End Users/Desktop',

0 commit comments

Comments
 (0)