# HG changeset patch # User Steve Losh # Date 1355334745 18000 # Node ID 79d68c4332bf3c8a61ccaed7eb1a46e408fadbdf # Parent ddce69161ccb64cc3df69418c34ce74450d5909e Fix some indentation. diff -r ddce69161ccb -r 79d68c4332bf autoload/splice.py --- a/autoload/splice.py Wed Dec 12 12:52:06 2012 -0500 +++ b/autoload/splice.py Wed Dec 12 12:52:25 2012 -0500 @@ -3,11 +3,11 @@ # Add the library to the Python path. for p in vim.eval("&runtimepath").split(','): - plugin_dir = os.path.join(p, "autoload") - if os.path.exists(os.path.join(plugin_dir, "splicelib")): - if plugin_dir not in sys.path: - sys.path.append(plugin_dir) - break + plugin_dir = os.path.join(p, "autoload") + if os.path.exists(os.path.join(plugin_dir, "splicelib")): + if plugin_dir not in sys.path: + sys.path.append(plugin_dir) + break import splicelib.init as splice