Index: /issm/trunk-jpl/src/m/classes/pairoptions.py
===================================================================
--- /issm/trunk-jpl/src/m/classes/pairoptions.py	(revision 25011)
+++ /issm/trunk-jpl/src/m/classes/pairoptions.py	(revision 25012)
@@ -10,5 +10,5 @@
     """
 
-    def __init__(self, * arg):  # {{{
+    def __init__(self, *arg):  # {{{
         self.functionname = ''
         self.list = OrderedDict()
@@ -23,5 +23,5 @@
             pass  #Do nothing,
         else:
-            self.buildlist(* arg)
+            self.buildlist(*arg)
     # }}}
 
@@ -38,5 +38,5 @@
     # }}}
 
-    def buildlist(self, * arg):  # {{{
+    def buildlist(self, *arg):  # {{{
         """BUILDLIST - build list of objects from input"""
 
Index: /issm/trunk-jpl/src/m/classes/plotoptions.py
===================================================================
--- /issm/trunk-jpl/src/m/classes/plotoptions.py	(revision 25011)
+++ /issm/trunk-jpl/src/m/classes/plotoptions.py	(revision 25012)
@@ -8,13 +8,13 @@
 
         Usage:
-            plotoptions = plotoptions(* arg)
+            plotoptions = plotoptions(*arg)
     '''
 
-    def __init__(self, * arg):  # {{{
+    def __init__(self, *arg):  # {{{
         self.numberofplots = 0
         self.figurenumber = 1
         self.list = OrderedDict()
 
-        self.buildlist(* arg)
+        self.buildlist(*arg)
     #}}}
 
@@ -33,5 +33,5 @@
     #}}}
 
-    def buildlist(self, * arg):  #{{{
+    def buildlist(self, *arg):  #{{{
         #check length of input
         if len(arg) % 2:
@@ -39,5 +39,5 @@
 
         #go through args and build list (like pairoptions)
-        rawoptions = pairoptions.pairoptions(* arg)
+        rawoptions = pairoptions.pairoptions(*arg)
         numoptions = int(len(arg) / 2)
         rawlist = []  # cannot be a dict since they do not support duplicate keys
Index: /issm/trunk-jpl/src/m/miscellaneous/PythonFuncs.py
===================================================================
--- /issm/trunk-jpl/src/m/miscellaneous/PythonFuncs.py	(revision 25011)
+++ /issm/trunk-jpl/src/m/miscellaneous/PythonFuncs.py	(revision 25012)
@@ -2,5 +2,5 @@
 
 
-def logical_and_n(* arg):
+def logical_and_n(*arg):
 
     if len(arg):
@@ -14,5 +14,5 @@
 
 
-def logical_or_n(* arg):
+def logical_or_n(*arg):
 
     if len(arg):
