diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-10 14:14:24 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-10 14:14:24 -0400 |
commit | c5da71a900d6263e29deb94d81aa22e6ba6f34ea (patch) | |
tree | ec7e051c253d197dc27f3af0525ca583bf8879d1 /becommands | |
parent | 0f09cef7c497ea826df526d2d3a5b018279c4d2f (diff) | |
download | bugseverywhere-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.
Diffstat (limited to 'becommands')
-rw-r--r-- | becommands/tag.py | 2 |
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: |