|
From: <fcr...@us...> - 2012-01-20 13:22:05
|
Revision: 793
http://safekeep.svn.sourceforge.net/safekeep/?rev=793&view=rev
Author: fcrawford
Date: 2012-01-20 13:21:54 +0000 (Fri, 20 Jan 2012)
Log Message:
-----------
Suppress duplicate message from client
Modified Paths:
--------------
safekeep/trunk/safekeep
Modified: safekeep/trunk/safekeep
===================================================================
--- safekeep/trunk/safekeep 2012-01-20 12:25:15 UTC (rev 792)
+++ safekeep/trunk/safekeep 2012-01-20 13:21:54 UTC (rev 793)
@@ -334,7 +334,7 @@
if tag:
if not tag.startswith('@'): tag = '@' + tag.lstrip()
tags.append(tag.strip())
- else:
+ elif not is_client:
warn('Device: %s: empty tag in taglist: %s' % (device, tag_el))
return { 'device' : device, 'size' : size, 'tags' : tags }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|