Index: /issm/trunk-jpl/test/NightlyRun/runme.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/runme.py	(revision 23368)
+++ /issm/trunk-jpl/test/NightlyRun/runme.py	(revision 23369)
@@ -11,5 +11,5 @@
 	"""
 	RUNME - test deck for ISSM nightly runs
- 
+
 	    In a test deck directory (tests/Vertification/NightlyRun for example)
 	    The following command will launch all the existing tests:
@@ -18,5 +18,5 @@
 	    >> runme(id=[101,102])
 	    etc...
- 
+
 	    Available options:
 	       'id'            followed by the list of ids or (parts of) test names requested
@@ -37,8 +37,8 @@
 	       'procedure'     'check' : run the test (default)
 	                       'update': update the archive
- 
+
 	    Usage:
 	       runme(varargin)
- 
+
 	    Examples:
 	       runme()
@@ -49,5 +49,4 @@
 	       runme(id=[[101,102],['Dakota','Slr']])
 	"""
-
 	from parallelrange import parallelrange
 	from IdToName import IdToName
@@ -85,11 +84,11 @@
 	i1,i2=parallelrange(rank,numprocs,len(list_ids))    #Get tests for this cpu only
 	list_ids=list_ids[i1:i2+1]
-	
-	if np.size(id) > 0:
+
+	if np.size(id) > 0 and not id==None:
 		test_ids = set(GetIds(id)).intersection(set(list_ids))
 	else:
 		# if no tests are specifically provided, do them all
 		test_ids = set(list_ids)
-		
+
 	# }}}
 	#GET exclude {{{
@@ -183,5 +182,5 @@
 							if np.shape(field) != np.shape(archive):
 								raise RuntimeError("Field '"+archive_name+"' from test is malformed; shape is "+str(np.shape(field.T))+", should be "+str(np.shape(archive))+" (or "+str(np.shape(archive.T))+").")
-						
+
 						error_diff=np.amax(np.abs(archive-field),axis=0)/(np.amax(np.abs(archive),axis=0)+float_info.epsilon)
 
Index: /issm/trunk-jpl/test/NightlyRun/test101.m
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/test101.m	(revision 23368)
+++ /issm/trunk-jpl/test/NightlyRun/test101.m	(revision 23369)
@@ -4,5 +4,6 @@
 md=parameterize(md,'../Par/SquareShelfConstrained.par');
 md=setflowequation(md,'SSA','all');
-md.cluster=generic('name',oshostname(),'np',2);
+md.cluster=stallo('numnodes',1,'cpuspernode',16,'time',60,'queue','devel')
+%md.cluster=generic('name',oshostname(),'np',2);
 
 %output
