Skip to content

Commit b621e20

Browse files
author
Richard Jones
committed
fix the "set" command usage statement
1 parent 8aaf65d commit b621e20

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

doc/customizing.txt

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

5-
:Version: $Revision: 1.81 $
5+
:Version: $Revision: 1.82 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -371,11 +371,11 @@ let's say that there's an issue in roundup, issue 23. There's also a user,
371371
richard who happens to be user 2. To assign an issue to him, we could do either
372372
of::
373373

374-
roundup-admin set issue assignedto=2
374+
roundup-admin set issue23 assignedto=2
375375

376376
or::
377377

378-
roundup-admin set issue assignedto=richard
378+
roundup-admin set issue23 assignedto=richard
379379

380380
Note, the same thing can be done in the web and e-mail interfaces.
381381

doc/user_guide.txt

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

5-
:Version: $Revision: 1.16 $
5+
:Version: $Revision: 1.17 $
66

77
.. contents::
88

@@ -440,7 +440,7 @@ The basic usage is::
440440
retire designator[,designator]*
441441
rollback
442442
security [Role name]
443-
set [items] property=value property=value ...
443+
set items property=value property=value ...
444444
specification classname
445445
table classname [property[,property]*]
446446
Commands may be abbreviated as long as the abbreviation matches only one

roundup/admin.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: admin.py,v 1.49 2003-03-26 11:02:28 richard Exp $
19+
# $Id: admin.py,v 1.50 2003-03-27 05:23:39 richard Exp $
2020

2121
'''Administration commands for maintaining Roundup trackers.
2222
'''
@@ -482,10 +482,10 @@ def do_get(self, args):
482482

483483

484484
def do_set(self, args, pwre = re.compile(r'{(\w+)}(.+)')):
485-
'''Usage: set [items] property=value property=value ...
485+
'''Usage: set items property=value property=value ...
486486
Set the given properties of one or more items(s).
487487
488-
The items may be specified as a class or as a comma-separated
488+
The items are specified as a class or as a comma-separated
489489
list of item designators (ie "designator[,designator,...]").
490490
491491
This command sets the properties to the values for all designators

0 commit comments

Comments
 (0)