Save whole bugdir in becommands/tag.py.
authorW. Trevor King <wking@drexel.edu>
Fri, 10 Jul 2009 18:14:24 +0000 (14:14 -0400)
committerW. Trevor King <wking@drexel.edu>
Fri, 10 Jul 2009 18:14:24 +0000 (14:14 -0400)
It doesn't matter now, but at some point Bugdir might implement some
sort of repo-wide caching which would need to be saved.  The
BugDir.save() method should be intelligent enough to not save things
that have not changed, so efficiency should not be effected either.

becommands/tag.py

index ab0324e0c09015d0e3d0647cb5d2ae116391ad79..1b20ddb0806ba9bc0e34822e6ad15afdad0b6ea1 100644 (file)
@@ -102,7 +102,7 @@ def execute(args, test=False):
         else: # add the tag
             estrs.append(tag_string)
         bug.extra_strings = estrs # reassign to notice change
-        bug.save()
+        bd.save()
 
     tags = []
     for estr in bug.extra_strings: