X-Git-Url: http://dolda2000.com/gitweb/?p=automanga.git;a=blobdiff_plain;f=manga%2Fprofile.py;h=ecfb3542cff889150b4202f7375d25834cfabc02;hp=081cd6c58ff0af1de389fde728c79a8fba725ff5;hb=40277671182cc3dd6ea80346630cc22d03235033;hpb=db1abade96e86cbf09bc5b82aadbcbc8ba925777 diff --git a/manga/profile.py b/manga/profile.py index 081cd6c..ecfb354 100644 --- a/manga/profile.py +++ b/manga/profile.py @@ -4,7 +4,8 @@ pj = os.path.join home = os.getenv("HOME") if home is None or not os.path.isdir(home): raise Exception("Could not find home directory for profile keeping") -basedir = pj(home, ".manga", "profiles") +confdir = pj(home, ".manga") +basedir = pj(confdir, "profiles") class txfile(object): def __init__(self, name, mode):