Skip to content

Commit 9bd649b

Browse files
author
Richard Jones
committed
minor fix to error message
1 parent 5c34b76 commit 9bd649b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

roundup/admin.py

Lines changed: 7 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: admin.py,v 1.9 2002-03-12 22:51:47 richard Exp $
19+
# $Id: admin.py,v 1.10 2002-04-27 10:07:23 richard Exp $
2020

2121
import sys, os, getpass, getopt, re, UserDict, shlex
2222
try:
@@ -267,7 +267,7 @@ def do_initialise(self, instance_home, args):
267267
parent = os.path.split(instance_home)[0]
268268
if not os.path.exists(parent):
269269
raise UsageError, _('Instance home parent directory "%(parent)s"'
270-
'does not exist')%locals()
270+
' does not exist')%locals()
271271

272272
# select template
273273
import roundup.templates
@@ -1061,6 +1061,11 @@ def main(self):
10611061

10621062
#
10631063
# $Log: not supported by cvs2svn $
1064+
# Revision 1.9 2002/03/12 22:51:47 richard
1065+
# . #527416 ] roundup-admin uses undefined value
1066+
# . #527503 ] unfriendly init blowup when parent dir
1067+
# (also handles UsageError correctly now in init)
1068+
#
10641069
# Revision 1.8 2002/02/27 03:28:21 richard
10651070
# Ran it through pychecker, made fixes
10661071
#

0 commit comments

Comments
 (0)