about summary refs log tree commit diff
path: root/wqflask/utility/webqtlUtil.py
diff options
context:
space:
mode:
Diffstat (limited to 'wqflask/utility/webqtlUtil.py')
-rwxr-xr-xwqflask/utility/webqtlUtil.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/wqflask/utility/webqtlUtil.py b/wqflask/utility/webqtlUtil.py
index 6409e781..99451e33 100755
--- a/wqflask/utility/webqtlUtil.py
+++ b/wqflask/utility/webqtlUtil.py
@@ -252,7 +252,12 @@ def FloatList2String(lst):
         return ""
 
 def ListNotNull(lst):
-    'Determine if the elements in a list are all null'
+    '''Obsolete - Use built in function any (or all or whatever)
+    
+    
+    Determine if the elements in a list are all null
+    
+    '''
     for item in lst:
         if item is not None:
             return 1