diff --git a/pyglance/glance/compare.py b/pyglance/glance/compare.py
index 299ba8dfc861fe4b3670df0cb3ccac676cbc95f9..7b57c9138a3080e45ad1b0b8d147e09c64a20672 100644
--- a/pyglance/glance/compare.py
+++ b/pyglance/glance/compare.py
@@ -88,6 +88,9 @@ python -m glance.compare plotDiffs A.hdf B.hdf [optional output path]
     parser.add_option('-r', '--reportonly', dest="htmlOnly", 
                       action="store_true", default=False,
                       help="generate only html report files (no images)")
+# this option will be added in the future
+#    parser.add_option('-c', '--configfile', dest="configFile", type='string',
+#                      help="set optional configuration file")
     
                     
     options, args = parser.parse_args()
diff --git a/pyglance/setup.py b/pyglance/setup.py
index 386b8eb74666f42f0517768c514971aac4cb79f8..446012616683a7857a3a712fe03e5468437febaa 100644
--- a/pyglance/setup.py
+++ b/pyglance/setup.py
@@ -18,7 +18,7 @@ easy_install -d $HOME/Library/Python -vi http://larch.ssec.wisc.edu/eggs/repos g
 from setuptools import setup, find_packages
 
 setup( name="glance", 
-       version="0.2.5.1", 
+       version="0.2.6", 
        zip_safe = True,
        entry_points = { 'console_scripts': [ 'glance = glance.compare:main' ] },
        packages = find_packages('.'),