diff options
author | W. Trevor King <wking@drexel.edu> | 2009-07-11 07:46:22 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-07-11 07:46:22 -0400 |
commit | f87355fddc2a931e3f984d074a713f4313d5f709 (patch) | |
tree | 4c217b7a2b9867c74e8f0f5bd1d05180cbbc6e90 /becommands/comment.py | |
parent | 4038e118782113b404f0995e3c919d6e58195c22 (diff) | |
download | bugseverywhere-f87355fddc2a931e3f984d074a713f4313d5f709.tar.gz |
Adjustments to new versioned_property behavior.
Also adjusted libbe/comment.py to move to user-specified alt_ids,
rather than uuids.
Diffstat (limited to 'becommands/comment.py')
-rw-r--r-- | becommands/comment.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/becommands/comment.py b/becommands/comment.py index a11cd90..f350291 100644 --- a/becommands/comment.py +++ b/becommands/comment.py @@ -16,7 +16,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Add a comment to a bug""" -from libbe import cmdutil, bugdir, comment, settings_object, editor +from libbe import cmdutil, bugdir, comment, editor import os import sys try: # import core module, Python >= 2.5 @@ -42,7 +42,7 @@ def execute(args, test=False): True >>> comment.time <= int(time.time()) True - >>> comment.in_reply_to is settings_object.EMPTY + >>> comment.in_reply_to is None True >>> if 'EDITOR' in os.environ: @@ -131,7 +131,7 @@ def execute(args, test=False): raise cmdutil.UserError( "Clashing comment uuids: %s" % new.uuid) uuids.append(new.uuid) - if new.in_reply_to in [settings_object.EMPTY, None]: + if new.in_reply_to == None: new.in_reply_to = parent.uuid new_comments.append(new) else: |