diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-11 16:45:20 +0000 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-03-11 16:45:20 +0000 |
commit | 56c2c54ef00acc75f2bce8ded2b7fa66e8d07712 (patch) | |
tree | feafea20cef817c9c724da2395318146f0fe6772 /libbe | |
parent | 0620177b8b876765f1a39245fef4207266f5c2bc (diff) | |
download | bugseverywhere-56c2c54ef00acc75f2bce8ded2b7fa66e8d07712.tar.gz |
Removed friendly bug name
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/bugdir.py | 7 | ||||
-rw-r--r-- | libbe/cmdutil.py | 8 | ||||
-rw-r--r-- | libbe/names.py | 14 |
3 files changed, 1 insertions, 28 deletions
diff --git a/libbe/bugdir.py b/libbe/bugdir.py index fd7b0f6..0008be8 100644 --- a/libbe/bugdir.py +++ b/libbe/bugdir.py @@ -75,13 +75,6 @@ class Bug(object): def get_path(self, file): return os.path.join(self.path, file) - def _get_name(self): - return self._get_value("name") - - def _set_name(self, value): - return self._set_value("name", value) - - name = file_property("name") summary = file_property("summary") creator = file_property("creator") target = file_property("target") diff --git a/libbe/cmdutil.py b/libbe/cmdutil.py index e7ded4f..ac67f3a 100644 --- a/libbe/cmdutil.py +++ b/libbe/cmdutil.py @@ -24,14 +24,8 @@ def get_bug(spec, bug_dir): return matches[0] matches = [] - for bug in bugs: - if bug.name == spec: - matches.append(bug) - if len(matches) > 1: - raise UserError("More than one bug has the name %s. Please use the" - " uuid." % spec) if len(matches) == 0: - raise UserError("No bug has the name %s" % spec) + raise UserError("No bug matches %s" % spec) return matches[0] def bug_summary(bug, bugs): diff --git a/libbe/names.py b/libbe/names.py index 1c54dc2..1951046 100644 --- a/libbe/names.py +++ b/libbe/names.py @@ -6,17 +6,3 @@ def uuid(): def creator(): return os.environ["LOGNAME"] - -def friendly_name(bugs, ctor): - last = 0 - for bug in bugs: - name = bug.name - if name is None: - continue - if name.startswith(ctor): - num = int(name.split("-")[-1]) - if num > last: - last = num - return "%s-%i" % (ctor, last+1) - - |