Make function's docstring be comments to fix waf help message
authorMitch Watrous <watrous@u.washington.edu>
Sun, 17 Apr 2011 19:45:48 -0700
changeset 7063 9f950840670b
parent 7062 bfac4de27c06
child 7064 7b2e9458bff1
Make function's docstring be comments to fix waf help message
utils.py
--- a/utils.py	Sun Apr 17 18:58:45 2011 -0700
+++ b/utils.py	Sun Apr 17 19:45:48 2011 -0700
@@ -76,15 +76,11 @@
         return value_if_missing
 
 
+# Reads the NS-3 configuration file and returns a list of enabled modules.
+#
+# This function first looks for the ns3 configuration file (.ns3rc) in
+# the current working directory and then looks in the ~ directory.
 def read_config_file():
-    '''Reads the NS-3 configuration file and returns a list of enabled modules.
-
-    This function first looks for the ns3 configuration file (.ns3rc)
-    in the current working directory and then looks in the ~
-    directory.
-
-    '''
-
     # By default, all modules will be enabled, examples will be disabled,
     # and tests will be disabled.
     modules_enabled  = ['all_modules']