From: Brandon King Date: Wed, 16 Jan 2008 01:07:05 +0000 (+0000) Subject: Attempt to support case insensitive config file names. X-Git-Tag: 0.1.0~6 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=7a9308e382b38f293106fa1d8c31e3c528f837d5 Attempt to support case insensitive config file names. * ticket:43 --- diff --git a/gaworkflow/frontend/eland_config/views.py b/gaworkflow/frontend/eland_config/views.py index 994062a..6175718 100644 --- a/gaworkflow/frontend/eland_config/views.py +++ b/gaworkflow/frontend/eland_config/views.py @@ -248,7 +248,7 @@ def getElandConfig(flowcell, regenerate=False): return data try: - fcObj = models.FlowCell.objects.get(flowcell_id=flowcell) + fcObj = models.FlowCell.objects.get(flowcell_id__iexact=flowcell) except ObjectDoesNotExist: return None