blob: 24abd2cf948c41d4adfc97eaf9707fd9805bba9e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import os
class storageBase:
def notifyChange(self, sender): abstract
def getConfigDir(self):
dir = os.path.expanduser('~/.todolist/blub')
if not os.path.exists(dir):
os.makedirs(dir)
return dir
|