* src/DbManager.py: typo %{}s -> %()s; fixed rcs -q issue
* src/Utils.py: typo %{}s -> %()s 2007-12-16 Douglas S. Blank <dblank@cs.brynmawr.edu> svn: r9521
This commit is contained in:
@@ -491,7 +491,7 @@ class DbManager:
|
||||
rev = self.data_to_delete[0]
|
||||
parent = store[(path[0],)][0]
|
||||
QuestionDialog.QuestionDialog(
|
||||
_("Remove the '%{revision}s' version of %{database}s") % {
|
||||
_("Remove the '%(revision)s' version of '%(database)s'") % {
|
||||
'revision' : rev,
|
||||
'database' : parent
|
||||
},
|
||||
@@ -533,7 +533,7 @@ class DbManager:
|
||||
rev = self.data_to_delete[PATH_COL]
|
||||
archive = os.path.join(db_dir, ARCHIVE_V)
|
||||
|
||||
cmd = [ "rcs", "-o%s" % rev, archive ]
|
||||
cmd = [ "rcs", "-o%s" % rev, "-q", archive ]
|
||||
|
||||
proc = subprocess.Popen(cmd, stderr = subprocess.PIPE)
|
||||
status = proc.wait()
|
||||
|
Reference in New Issue
Block a user