aboutsummaryrefslogtreecommitdiff
path: root/scilo
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2013-01-16 08:25:17 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2013-01-16 08:25:17 -0500
commit6bcd3f0d84a38d101209c78dca5e1ebe0491410b (patch)
tree3c2b57e5cc1df610e269abd501babe4f45dd7b07 /scilo
parent12f929e504d2ebd844bdd2bd3210db4b61a4bdbb (diff)
downloadscilo-6bcd3f0d84a38d101209c78dca5e1ebe0491410b.tar.gz
Clarified stdout
Diffstat (limited to 'scilo')
-rw-r--r--scilo/npy.py4
1 files changed, 2 insertions, 2 deletions
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'], "*.*")):