aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-07-10 14:14:24 -0400
committerW. Trevor King <wking@drexel.edu>2009-07-10 14:14:24 -0400
commitc5da71a900d6263e29deb94d81aa22e6ba6f34ea (patch)
treeec7e051c253d197dc27f3af0525ca583bf8879d1
parent0f09cef7c497ea826df526d2d3a5b018279c4d2f (diff)
downloadbugseverywhere-c5da71a900d6263e29deb94d81aa22e6ba6f34ea.tar.gz
Save whole bugdir in becommands/tag.py.
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.
-rw-r--r--becommands/tag.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/becommands/tag.py b/becommands/tag.py
index ab0324e..1b20ddb 100644
--- a/becommands/tag.py
+++ b/becommands/tag.py
@@ -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: