policycoreutils: semanage: surround getopt with try/except

One of the getopt parsers didn't have a try/except pair to show usage
when a user did it wrong.  Fix that.

Signed-off-by: Eric Paris <eparis@redhat.com>
Acked-by: Dan Walsh <dwalsh@redhat.com>
diff --git a/policycoreutils/semanage/semanage b/policycoreutils/semanage/semanage
index 304a641..bcb4e7f 100644
--- a/policycoreutils/semanage/semanage
+++ b/policycoreutils/semanage/semanage
@@ -206,32 +206,36 @@
 			
 		args = argv[1:]
 
-		gopts, cmds = getopt.getopt(args,
-					    '01adf:i:lhmnp:s:FCDR:L:r:t:P:S:M:',
-					    ['add',
-					     'delete',
-					     'deleteall',
-					     'ftype=',
-					     'file',
-					     'help',
-                                             'input=',
-					     'list', 
-					     'modify',
-					     'noheading',
-					     'localist',
-                                             'off', 
-                                             'on', 
-					     'proto=',
-					     'seuser=',
-					     'store=',
-					     'range=',
-					     'locallist=',
-					     'level=',
-					     'roles=',
-					     'type=',
-					     'prefix=',
-                                             'mask='
-					     ])
+		try:
+			gopts, cmds = getopt.getopt(args,
+						    '01adf:i:lhmnp:s:FCDR:L:r:t:P:S:M:',
+						    ['add',
+						     'delete',
+						     'deleteall',
+						     'ftype=',
+						     'file',
+						     'help',
+						     'input=',
+						     'list',
+						     'modify',
+						     'noheading',
+						     'localist',
+						     'off',
+						     'on',
+						     'proto=',
+						     'seuser=',
+						     'store=',
+						     'range=',
+						     'locallist=',
+						     'level=',
+						     'roles=',
+						     'type=',
+						     'prefix=',
+						     'mask='
+						     ])
+		except getopt.error, error:
+			usage(_("Options Error %s ") % error.msg)
+
 		for o, a in gopts:
 			if o not in option_dict[object]:
 				sys.stderr.write(_("%s not valid for %s objects\n") % ( o, object) );