79d68c4332bf
Fix some indentation.
| author | Steve Losh <steve@stevelosh.com> | 
|---|---|
| date | Wed, 12 Dec 2012 12:52:25 -0500 | 
| parents | ddce69161ccb | 
| children | 06491cc1f4a2 | 
| branches/tags | (none) | 
| files | autoload/splice.py | 
Changes
--- 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