fix syntax error in utility functions used by create_ami

This commit is contained in:
Lloyd Hilaiel 2013-01-07 12:05:16 -07:00
Родитель 1567a0d57e
Коммит e79e581372
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -59,7 +59,7 @@ exports.list = function(cb) {
// given something the user typed in, try to figure out what instance they're talking about
function findInstance(r, name) {
// is what the human typed in an instance id?
var x = jsel.match('object:has(:root > .instanceId:val("?"))', [ name ], r);
var x = jsel.match('object:has(:root > .instanceId:val(?))', [ name ], r);
if (x.length) return x[0];
// is what the human typed in the vm "short name" ?