summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2014-03-21 16:01:38 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2014-03-21 16:01:38 +0000
commit03f72232c971cdd5efda06c4ddcba3bcee2fbc13 (patch)
tree0c5e702deee086cd2d10c4b9d999907cf2bfeb21
parent88eaef356a6f1e3134d29a6e247cf1ebb8e52849 (diff)
downloadlorry-controller-03f72232c971cdd5efda06c4ddcba3bcee2fbc13.tar.gz
Fix wrong variable
-rwxr-xr-xlorry-controller-webapp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lorry-controller-webapp b/lorry-controller-webapp
index 060d23e..c91c159 100755
--- a/lorry-controller-webapp
+++ b/lorry-controller-webapp
@@ -1241,7 +1241,7 @@ class ForceLsTrove(LorryControllerRoute):
lister = TroveRepositoryLister(self.app_settings)
trove_info = statedb.get_trove_info(trovehost)
try:
- updated = lister.list_trove_into_statedb(statedb, trovehost)
+ updated = lister.list_trove_into_statedb(statedb, trove_info)
except GitanoLsError as e:
raise bottle.abort(500, str(e))