From df429c7c67d1260d4dabca9381370a31b205e8fe Mon Sep 17 00:00:00 2001
From: Andre Smit <freev...@gmail.com>
Date: Thu, 10 Jun 2010 11:23:50 -0500
Subject: [PATCH] extend abaqus format to include cae 6.7

---
 sfepy/fem/meshio.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sfepy/fem/meshio.py b/sfepy/fem/meshio.py
index 4a7d709..9bc3767 100644
--- a/sfepy/fem/meshio.py
+++ b/sfepy/fem/meshio.py
@@ -1701,7 +1701,7 @@ class AbaqusMeshIO( MeshIO ):
                 line = fd.readline().strip().split(',')
             except:
                 break
-            if line[0] == '*NODE':
+            if line[0].upper() == '*NODE':
                 ok = True
                 break
         fd.close()
-- 
1.7.0.4

