| Index: git_cl.py
|
| diff --git a/git_cl.py b/git_cl.py
|
| index 039b35df17cdfb4c402730c3d233c057df27e4b0..7515bf770a3c3958ec84b091f66a13b9270a6078 100755
|
| --- a/git_cl.py
|
| +++ b/git_cl.py
|
| @@ -1574,7 +1574,8 @@ def CMDdescription(parser, args):
|
| DieWithError('This branch has no associated changelist.')
|
| description = ChangeDescription(cl.GetDescription())
|
| description.prompt()
|
| - cl.UpdateDescription(description.description)
|
| + if cl.GetDescription() != description.description:
|
| + cl.UpdateDescription(description.description)
|
| return 0
|
|
|
|
|
|
|