diff --git a/README b/README index 856d81582..a608e4b1f 100644 --- a/README +++ b/README @@ -76,7 +76,7 @@ Download A Mercurial repository can be found at: - https://hg.furius.ca/public/beancount/ + http://hg.furius.ca/public/beancount/ `Click here for download instructions. `_ diff --git a/TODO b/TODO index bcc82f640..138d5a93f 100644 --- a/TODO +++ b/TODO @@ -14,6 +14,10 @@ Beancount (Accounting) ====================== + - Remove support for virtual postings, hack not needed anymore! + - Remove support for BOOK <> IN ... do it now! + + - Support Ledger's aliases? - Support Ledger's "root account"? I can only see it being useful for includes. diff --git a/bin/bean-check-directories b/bin/bean-check-directories index fc4488b92..738687158 100755 --- a/bin/bean-check-directories +++ b/bin/bean-check-directories @@ -25,7 +25,9 @@ def main(): parser = optparse.OptionParser(__doc__.strip()) cmdline.addopts(parser) opts, ledger, args = cmdline.main(parser, 1) - logging.basicConfig(level=logging.INFO, format='%(levelname)-8s: %(message)s') + logging.getLogger().setLevel(logging.INFO) + logging.info("TESTING") + print logging.getLogger().level, logging.INFO accounts = set(get_accounts(ledger)) for arg in args: @@ -33,11 +35,11 @@ def main(): for dname in find_files(arg): dircomps = dname.split('/') if not all(re.match('[A-Z].*', x) for x in dircomps): - logging.warn("Directory '%s' skipped." % dname) + logging.debug("Directory '%s' skipped." % dname) continue if dircomps[0] == 'Misc': - logging.warn("Directory '%s' skipped." % dname) + logging.debug("Directory '%s' skipped." % dname) continue aname = dname.replace('/', ':') diff --git a/index.html b/index.html index 10ead740d..35dfa5299 100644 --- a/index.html +++ b/index.html @@ -89,7 +89,7 @@
A Mercurial repository can be found at:
-https://hg.furius.ca/public/beancount/+http://hg.furius.ca/public/beancount/
Click here for download instructions.