From eced09ce4758c440444d04b8b65e2e7fa801974d Mon Sep 17 00:00:00 2001
From: Eva Schiffer <evas@ssec.wisc.edu>
Date: Fri, 9 Aug 2013 13:24:15 -0500
Subject: [PATCH] adding an ignore file and fixing the pass fail bug in the
 config_organizer

---
 .gitignore                          | 59 +++++++++++++++++++++++++++++
 pyglance/glance/config_organizer.py |  2 +
 2 files changed, 61 insertions(+)
 create mode 100644 .gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..64cc5de
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,59 @@
+### PYTHON IGNORES ###
+*.py[cod]
+
+# C extensions
+*.so
+
+# Packages
+*.egg
+*.egg-info
+dist
+build
+eggs
+parts
+bin
+var
+sdist
+develop-eggs
+.installed.cfg
+lib
+lib64
+
+# Installer logs
+pip-log.txt
+
+# Unit test / coverage reports
+.coverage
+.tox
+nosetests.xml
+
+#Translations
+*.mo
+
+#Mr Developer
+.mr.developer.cfg
+
+### C IGNORES ###
+# Object files
+*.o
+
+# Libraries
+*.lib
+*.a
+
+# Shared objects (inc. Windows DLLs)
+*.dll
+*.so
+*.so.*
+*.dylib
+
+# Executables
+*.exe
+*.out
+*.app
+
+### Various OS Files ###
+.DS_Store
+._.DS_Store
+Thumbs.db
+
diff --git a/pyglance/glance/config_organizer.py b/pyglance/glance/config_organizer.py
index 26ad2ec..482117c 100644
--- a/pyglance/glance/config_organizer.py
+++ b/pyglance/glance/config_organizer.py
@@ -527,6 +527,8 @@ def get_simple_variable_defaults ( ) :
     
     tempOptions = { }
     tempOptions.update(glance_analysis_defaults)
+    
+    return tempOptions
 
 # FUTURE, at some point set up test cases
 if __name__=='__main__':
-- 
GitLab