summaryrefslogtreecommitdiffstats
path: root/storage/storageBase.py
diff options
context:
space:
mode:
Diffstat (limited to 'storage/storageBase.py')
-rw-r--r--storage/storageBase.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/storage/storageBase.py b/storage/storageBase.py
index 24abd2c..064c8a3 100644
--- a/storage/storageBase.py
+++ b/storage/storageBase.py
@@ -1,10 +1,12 @@
+# -*- coding: utf-8 -*-
+
import os
class storageBase:
def notifyChange(self, sender): abstract
def getConfigDir(self):
- dir = os.path.expanduser('~/.todolist/blub')
+ dir = os.path.expanduser('~/.todolist/')
if not os.path.exists(dir):
os.makedirs(dir)