|
From: <st...@us...> - 2007-01-28 23:34:53
|
Revision: 323
http://safekeep.svn.sourceforge.net/safekeep/?rev=323&view=rev
Author: stelian
Date: 2007-01-28 15:34:41 -0800 (Sun, 28 Jan 2007)
Log Message:
-----------
Let the user know we're excluding some files because of wrong suffix.
Modified Paths:
--------------
safekeep/trunk/safekeep
Modified: safekeep/trunk/safekeep
===================================================================
--- safekeep/trunk/safekeep 2007-01-28 23:23:45 UTC (rev 322)
+++ safekeep/trunk/safekeep 2007-01-28 23:34:41 UTC (rev 323)
@@ -236,6 +236,7 @@
if os.path.isdir(cfg):
for ent in os.listdir(cfg):
if not ent.endswith(config_ext):
+ print >> sys.stderr, 'Ignoring file %s not ending in %s' % (os.path.join(cfg, ent), config_ext)
continue
filepath = os.path.join(cfg, ent)
if not os.path.isfile(filepath):
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|