Attempt to support case insensitive config file names.
authorBrandon King <kingb@caltech.edu>
Wed, 16 Jan 2008 01:07:05 +0000 (01:07 +0000)
committerBrandon King <kingb@caltech.edu>
Wed, 16 Jan 2008 01:07:05 +0000 (01:07 +0000)
 * ticket:43

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