Merge pull request #147 from epfl-scitas/bugfixes/db_context_manager

Fixed typo : write_lock() -> write_transaction()
This commit is contained in:
Todd Gamblin
2015-10-29 23:48:14 -07:00
3 changed files with 3 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ def diy(self, args):
tty.die("spack diy only takes one spec.")
# Take a write lock before checking for existence.
with spack.installed_db.write_lock():
with spack.installed_db.write_transaction():
spec = specs[0]
if not spack.db.exists(spec.name):
tty.warn("No such package: %s" % spec.name)

View File

@@ -71,7 +71,7 @@ def install(parser, args):
specs = spack.cmd.parse_specs(args.packages, concretize=True)
for spec in specs:
package = spack.db.get(spec)
with spack.installed_db.write_lock():
with spack.installed_db.write_transaction():
package.do_install(
keep_prefix=args.keep_prefix,
keep_stage=args.keep_stage,

View File

@@ -53,7 +53,7 @@ def uninstall(parser, args):
if not args.packages:
tty.die("uninstall requires at least one package argument.")
with spack.installed_db.write_lock():
with spack.installed_db.write_transaction():
specs = spack.cmd.parse_specs(args.packages)
# For each spec provided, make sure it refers to only one package.