Migrate travis to use new docker system.

* Travis now installs built vim into $DEPS.
* test/run now detects best vim to use.
* python: Fix small display issue with error messages.
This commit is contained in:
Jeremy Pallats/starcraft.man
2015-11-28 10:00:49 -05:00
parent 0611369d0d
commit dbd045e995
3 changed files with 40 additions and 25 deletions

View File

@@ -1283,7 +1283,7 @@ class Plugin(object):
with self.lock:
thread_vim_command("let s:update.new['{0}'] = 1".format(self.name))
except PlugError as exc:
self.write(Action.ERROR, self.name, str(exc))
self.write(Action.ERROR, self.name, [str(exc)])
except KeyboardInterrupt:
G_STOP.set()
self.write(Action.ERROR, self.name, ['Interrupted!'])