summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f95540f)
raw | patch | inline | side by side (parent: f95540f)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 31 Dec 2001 05:12:52 +0000 (05:12 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 31 Dec 2001 05:12:52 +0000 (05:12 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@484 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup-admin | patch | blob | history |
diff --git a/roundup-admin b/roundup-admin
index b3cfe4628dbe6d5274cf0b8bdcafbf81a4284b87..f04f62786270dfa8b95255fd866c42eb69cb0b70 100755 (executable)
--- a/roundup-admin
+++ b/roundup-admin
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: roundup-admin,v 1.57 2001-12-31 05:12:01 richard Exp $
+# $Id: roundup-admin,v 1.58 2001-12-31 05:12:52 richard Exp $
# python version check
from roundup import version_check
# exit.. check for transactions
if self.db and self.db.transactions:
commit = raw_input("There are unsaved changes. Commit them (y/N)? ")
- if commit[0].lower() == 'y':
+ if commit and commit[0].lower() == 'y':
self.db.commit()
return 0
#
# $Log: not supported by cvs2svn $
+# Revision 1.57 2001/12/31 05:12:01 richard
+# added some quoting instructions to roundup-admin
+#
# Revision 1.56 2001/12/31 05:09:20 richard
# Added better tokenising to roundup-admin - handles spaces and stuff. Can
# use quoting or backslashes. See the roundup.token pydoc.