Attempt to support case insensitive config file names.
[htsworkflow.git] / gaworkflow / frontend / eland_config / views.py
index 994062a2544937f3ee37e029daa85790983c07cf..61757182013b9f13f71ffa9a3c8340a94b9a9a30 100644 (file)
@@ -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