Fix up the owners field mess in tko parsing - it can be None

Signed-off-by: Martin J. Bligh <mbligh@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@1080 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/tko/frontend.py b/tko/frontend.py
index 0f85607..7b610a4 100755
--- a/tko/frontend.py
+++ b/tko/frontend.py
@@ -152,14 +152,7 @@
 		self.idx = idx
 		self.hostname = hostname
 		self.group = group
-		if owner:
-			if len(owner) > 3:
-				self.owner = owner.capitalize()
-			else:
-				# capitalize acroymns
-				self.owner = owner.upper()
-		else:
-			self.owner = None
+		self.owner = owner
 
 
 class kernel: