<p><b>dwj07@fsu.edu</b> 2013-03-20 15:03:40 -0600 (Wed, 20 Mar 2013)</p><p><br>
        -- BRANCH COMMIT --<br>
<br>
        Allowing spaces in the latex source of units.<br>
</p><hr noshade><pre><font color="gray">Modified: branches/tools/python_scripts/namelist_generation/parse_xml_registry.py
===================================================================
--- branches/tools/python_scripts/namelist_generation/parse_xml_registry.py        2013-03-20 18:09:30 UTC (rev 2635)
+++ branches/tools/python_scripts/namelist_generation/parse_xml_registry.py        2013-03-20 21:03:40 UTC (rev 2636)
@@ -70,7 +70,7 @@
                         if dim_units == &quot;&quot;:
                                 dim_units = latex_missing_string
                         else:
-                                dim_units = &quot;$%s$&quot;%dim_units
+                                dim_units = &quot;$%s$&quot;%dim_units.replace(' ', '$ $')
                 except:
                         dim_units = latex_missing_string
 
@@ -195,7 +195,7 @@
                         if opt_units == &quot;&quot;:
                                 opt_units = latex_missing_string
                         else:
-                                opt_units = &quot;$%s$&quot;%opt_units
+                                opt_units = &quot;$%s$&quot;%opt_units.replace(' ', '$ $')
                 except:
                         opt_units = latex_missing_string
 
@@ -375,7 +375,7 @@
                                 if var_units == &quot;&quot;:
                                         var_units = latex_missing_string
                                 else:
-                                        var_units = &quot;$%s$&quot;%var_units
+                                        var_units = &quot;$%s$&quot;%var_units.replace(' ', '$ $')
                         except:
                                 var_units = latex_missing_string
 
@@ -470,7 +470,7 @@
                                 if var_units == &quot;&quot;:
                                         var_units = latex_missing_string
                                 else:
-                                        var_units = &quot;$%s$&quot;%var_units
+                                        var_units = &quot;$%s$&quot;%var_units.replace(' ', '$ $')
                         except:
                                 var_units = latex_missing_string
 

</font>
</pre>