equal
deleted
inserted
replaced
185 """Update properties of issue ID""" |
185 """Update properties of issue ID""" |
186 |
186 |
187 issue, id = _find_issue(ui, repo, id) |
187 issue, id = _find_issue(ui, repo, id) |
188 if not issue: return |
188 if not issue: return |
189 |
189 |
190 _create_missing_dirs(os.path.join(repo.root, issues_dir), issue_id) |
190 _create_missing_dirs(os.path.join(repo.root, issues_dir), id) |
191 |
191 |
192 properties = _get_properties(opts['property']) |
192 properties = _get_properties(opts['property']) |
193 |
193 |
194 # Read the issue |
194 # Read the issue |
195 mbox = mailbox.Maildir(issue, factory=mailbox.MaildirMessage) |
195 mbox = mailbox.Maildir(issue, factory=mailbox.MaildirMessage) |