Lower the maximum block size used with rsync down to the maximum acceptable size...
[build-farm.git] / builds.py
index d08c33904e7bf300cd3c611fcc1e9d2edce12617..a1f3fc929ffb27016bf75eed9e66ee5e424a9bfe 100755 (executable)
--- a/builds.py
+++ b/builds.py
@@ -16,7 +16,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 
-from buildfarm.sqldb import StormCachingBuildFarm
+from buildfarm import BuildFarm
 import optparse
 import sys
 
@@ -26,7 +26,7 @@ parser.add_option("--last", help="Print last builds.", action="store_true")
 
 (opts, args) = parser.parse_args()
 
-buildfarm = StormCachingBuildFarm()
+buildfarm = BuildFarm()
 
 if opts.tree:
     builds = buildfarm.get_tree_builds(opts.tree)