Merge pull request #2 from netantho/master

fix syntax error bug on option parser in rest/index.py
This commit is contained in:
jeffbryner 2014-03-05 10:11:14 -08:00
Родитель 5dd40001e5 aab8575864
Коммит 0a135c5563
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -176,7 +176,7 @@ def initConfig():
options.esport=getConfig('esport',9200,options.configfile)
if __name__ == "__main__":
qparser=OptionParser()
parser=OptionParser()
parser.add_option("-c", dest='configfile' , default='index.conf', help="configuration file to use")
(options,args) = parser.parse_args()
initConfig()