Fixed typo : write_lock() -> write_transaction()

This commit is contained in:
Massimiliano Culpo 2015-10-30 07:40:45 +01:00
parent a1c42c2753
commit 6db2a58008
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.