Index: /issm/trunk-jpl/test/NightlyRun/runme.py
===================================================================
--- /issm/trunk-jpl/test/NightlyRun/runme.py	(revision 23268)
+++ /issm/trunk-jpl/test/NightlyRun/runme.py	(revision 23269)
@@ -82,11 +82,9 @@
 	flist=glob('test*.py')    #File name must start with 'test' and must end by '.py' and must be different than 'test.py'
 	list_ids=[int(file[4:-3]) for file in flist if not file == 'test.py']    #Keep test id only (skip 'test' and '.py')
-	#print 'list_ids =',list_ids
 
 	i1,i2=parallelrange(rank,numprocs,len(list_ids))    #Get tests for this cpu only
 	list_ids=list_ids[i1:i2+1]
-	#print 'list_ids after parallelrange =',list_ids
 	
-	if id:
+	if np.size(id) > 0:
 		test_ids = set(GetIds(id)).intersection(set(list_ids))
 	else:
@@ -94,5 +92,4 @@
 		test_ids = set(list_ids)
 		
-	#print 'test_ids after list =',test_ids
 	# }}}
 	#GET exclude {{{
@@ -100,6 +97,4 @@
 
 	test_ids=test_ids.difference(exclude_ids)
-	#print 'test_ids after exclude =',sorted(test_ids)
-	#return
 	# }}}
 	#Process Ids according to benchmarks {{{
@@ -124,8 +119,6 @@
 	elif benchmark=='adolc':
 		test_ids=test_ids.intersection(set(range(3001,3200)))
-	#print 'test_ids after benchmark =',test_ids
 	test_ids=list(test_ids)
 	test_ids.sort()
-	#print 'test_ids after sort =',test_ids
 	# }}}
 
