From 6bcd3f0d84a38d101209c78dca5e1ebe0491410b Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 16 Jan 2013 08:25:17 -0500 Subject: Clarified stdout --- scilo/npy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scilo/npy.py') diff --git a/scilo/npy.py b/scilo/npy.py index 80ea765..d007e7d 100644 --- a/scilo/npy.py +++ b/scilo/npy.py @@ -35,7 +35,7 @@ class settings(object): d = os.path.join(self.path, key) self.directories[key] = d - + class mtimedb: def __init__(self, **kwargs): self.settings = kwargs @@ -46,7 +46,7 @@ class mtimedb: def populate(self): #if not os.path.exists(self._path_database): if os.path.getsize(self._path_database) == 0: - print("Creating modification tracking database...") + print("Creating file tracking database...") try: self.db.cursor.execute("CREATE TABLE npy(file, mtime)") for f in glob.glob(os.path.join(self.settings['data'], "*.*")): -- cgit