From: <ssm...@us...> - 2007-02-20 13:25:24
|
Revision: 2233 http://svn.sourceforge.net/selinux/?rev=2233&view=rev Author: ssmalley Date: 2007-02-20 05:25:22 -0800 (Tue, 20 Feb 2007) Log Message: ----------- Author: Caleb Case Email: cc...@tr... Subject: policycoreutils/semanage/seobject.py:setransRecords: improper string subst Date: Tue, 6 Feb 2007 11:23:20 -0500 A small fix for the wrong number of arguments for python string substitution. Modified Paths: -------------- trunk/policycoreutils/semanage/seobject.py Modified: trunk/policycoreutils/semanage/seobject.py =================================================================== --- trunk/policycoreutils/semanage/seobject.py 2007-02-08 21:00:40 UTC (rev 2232) +++ trunk/policycoreutils/semanage/seobject.py 2007-02-20 13:25:22 UTC (rev 2233) @@ -139,7 +139,7 @@ translations = fd.readlines() fd.close() except IOError, e: - raise ValueError(_("Unable to open %s: translations not supported on non-MLS machines") % (self.filename, e) ) + raise ValueError(_("Unable to open %s: translations not supported on non-MLS machines") % (self.filename) ) self.ddict = {} self.comments = [] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |