From 4fb03c25100ccbbab4c1bb395ee25bf2719290d1 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Fri, 1 Aug 2008 19:48:56 -0700 Subject: [PATCH] check_grid.py: update to match new CLI: 'put - TARGET' instead of 'put TARGET' --- src/allmydata/test/check_grid.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/allmydata/test/check_grid.py b/src/allmydata/test/check_grid.py index 8b2fc9fc..46658698 100644 --- a/src/allmydata/test/check_grid.py +++ b/src/allmydata/test/check_grid.py @@ -183,10 +183,10 @@ class GridTester: self.put_mutable("recentlog", "Recent Mutable Log Header\n\n") def put(self, fn, data): - self.cli("put", "testgrid:"+fn, stdin=data, ignore_stderr=True) + self.cli("put", "-", "testgrid:"+fn, stdin=data, ignore_stderr=True) def put_mutable(self, fn, data): - self.cli("put", "--mutable", "testgrid:"+fn, + self.cli("put", "--mutable", "-", "testgrid:"+fn, stdin=data, ignore_stderr=True) def update(self, fn): -- 2.45.2