I've never worked anywhere particularly agile, so what I do is: 1) Figure out whether there's a reasonable fix that doesn't involve major rewrite. If not, then clear some time (perhaps by explaining to others how difficult the fix is) and do the rewrite. 2) There is a reasonable fix without major rewrite. Apply the fix, run the tests, check it in, mark the bug as fixed. 3) Now, raise a new bug/issue (enhancement request), outlining the proposed rewrite and how it would improve the code (simpler? more maintainable? reduces coupling? affects performance or resource use?). Assign it to myself, CC anyone interested in that bit of code. 4) Give people a chance to comment, then prioritise that new bug within my existing tasks. This usually means don't do it now, because most of the time if I have one "proper" bug to fix, then I have at least two. Do it once the critical list is cleared, or next time I need to do something that isn't boring. The important thing, I think, is to avoid <a href="http://sethgodin.typepad.com/seths_blog/2005/03/dont_shave_that.html">shaving a yak</a> every time you make a small bugfix. The trade-off is that if the code you want to rewrite is *really* bad, then it's easy to under-prioritise the rewrite, and you end up spending so much time maintaining it that you don't have time to replace it with something that would require less maintenance. That needs to be borne in mind. But no matter what priority the rewrite should be, or how your organisation assigns those priorities, fixing bad design in the same area of code is *not the same thing* as correcting the out-by-one error that caused the crash you originally went in to deal with. Obviously the more agile your shop, the more significant a refactor you can do without it being so disruptive / time-consuming / political as to require a separate task.