|
From: <di...@us...> - 2010-11-23 04:02:04
|
Revision: 722
http://safekeep.svn.sourceforge.net/safekeep/?rev=722&view=rev
Author: dimi
Date: 2010-11-23 04:01:58 +0000 (Tue, 23 Nov 2010)
Log Message:
-----------
Better identify the client's message class
Modified Paths:
--------------
safekeep/trunk/safekeep
Modified: safekeep/trunk/safekeep
===================================================================
--- safekeep/trunk/safekeep 2010-11-23 03:56:43 UTC (rev 721)
+++ safekeep/trunk/safekeep 2010-11-23 04:01:58 UTC (rev 722)
@@ -94,7 +94,7 @@
msg = '%s: %s' % (cls, msg)
else:
for c in VEBOSITY_BY_CLASS.keys():
- if msg.startswith(c + ': '):
+ if msg.upper().startswith(c + ': '):
cls = c
break
else:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|