Skip to content

Commit f762aa3

Browse files
author
Richard Jones
committed
Added quotes around python interpreter in windows bat [SF#623963]
Fixed link at end of installation doc [SF#623957]
1 parent 79bbe66 commit f762aa3

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
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+
2002-10-?? 0.5.2
5+
- added quotes around python interpreter in windows bat (sf bug 623963)
6+
- fixed link at end of installation doc (sf bug 623957)
7+
8+
49
2002-10-16 0.5.1
510
- highlight rows in groups of three
611
- metakit cleanups

doc/index.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ Bernhard Reiter,
7878
Dougal Scott,
7979
Stefan Seefeld,
8080
Jeffrey P Shell,
81-
Joel Shprentz.
81+
Joel Shprentz,
82+
Mike Thompson.
8283

8384

8485

doc/installation.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Installing Roundup
33
==================
44

5-
:Version: $Revision: 1.32 $
5+
:Version: $Revision: 1.33 $
66

77
.. contents::
88

@@ -423,10 +423,10 @@ Python 2.1.1 as shipped with SuSE7.3 might be missing module
423423

424424
Back to `Table of Contents`_
425425

426-
Next: `Getting Started`_
426+
Next: `User Guide`_
427427

428428
.. _`table of contents`: index.html
429-
.. _`getting started`: getting_started.html
429+
.. _`user guide`: user_guide.html
430430
.. _`roundup specification`: spec.html
431431
.. _`tracker configuration`: customizing.html#tracker-configuration
432432
.. _`customisation documentation`: customizing.html

setup.py

Lines changed: 3 additions & 3 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.39 2002-09-23 08:17:50 richard Exp $
19+
# $Id: setup.py,v 1.40 2002-10-17 00:22:16 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -85,8 +85,8 @@ def copy_scripts(self):
8585
try:
8686
if sys.platform == "win32":
8787
file.write('@echo off\n'
88-
'if NOT "%%_4ver%%" == "" %(python)s -O -c "from %(package)s.scripts.%(module)s import run; run()" %%$\n'
89-
'if "%%_4ver%%" == "" %(python)s -O -c "from %(package)s.scripts.%(module)s import run; run()" %%*\n'
88+
'if NOT "%%_4ver%%" == "" "%(python)s" -O -c "from %(package)s.scripts.%(module)s import run; run()" %%$\n'
89+
'if "%%_4ver%%" == "" "%(python)s" -O -c "from %(package)s.scripts.%(module)s import run; run()" %%*\n'
9090
% script_vars)
9191
else:
9292
file.write('#! %(python)s -O\n'

0 commit comments

Comments
 (0)