aboutsummaryrefslogtreecommitdiff
path: root/scilo
diff options
context:
space:
mode:
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'], "*.*")):