Index: /issm/trunk-jpl/startup.py
===================================================================
--- /issm/trunk-jpl/startup.py	(revision 12656)
+++ /issm/trunk-jpl/startup.py	(revision 12657)
@@ -22,4 +22,6 @@
 #ISSM path. Go through src/py and load everything we find  that looks like a python file
 for root,dirs,files in os.walk(ISSM_DIR+ '/src/py'):
+	if '.svn' in dirs:
+		dirs.remove('.svn')
 	for file in files:
 		if file.find(".py") != -1:
@@ -27,8 +29,11 @@
 				#add to path 
 				sys.path.append(root)
+				print root, "\n"
 				file=os.path.splitext(file)[0]
 				#__import__(file)
 
 for root,dirs,files in os.walk(ISSM_DIR+ '/src/m'):
+	if '.svn' in dirs:
+		dirs.remove('.svn')
 	for file in files:
 		if file.find(".py") != -1:
@@ -36,4 +41,5 @@
 				#add to path 
 				sys.path.append(root)
+				print root, "\n"
 				file=os.path.splitext(file)[0]
 				#__import__(file)
