X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=manga%2Fprofile.py;h=cc0a4a1dc69e618a2648662ce7165f9f557bca77;hb=e4aeea7390c65e0f0328690b3ea75737f0ccc6af;hp=081cd6c58ff0af1de389fde728c79a8fba725ff5;hpb=3cc7937cd91ec6d3cfb7eebcd4c1afd85c5a615a;p=automanga.git diff --git a/manga/profile.py b/manga/profile.py index 081cd6c..cc0a4a1 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): @@ -255,7 +256,7 @@ class profile(object): raise KeyError("no such manga: (%s, %s)" % (libnm, id)) while True: try: - fp = openwdir(pj(self.dir, "%i.manga" % seq), "wx") + fp = openwdir(pj(self.dir, "%i.manga" % seq), "x") except IOError: seq += 1 else: