Show More
@@ -197,13 +197,15 b' class SvnRemote(object):' | |||
|
197 | 197 | for path, change in editor.changes.iteritems(): |
|
198 | 198 | # TODO: Decide what to do with directory nodes. Subversion can add |
|
199 | 199 | # empty directories. |
|
200 | ||
|
200 | 201 | if change.item_kind == svn.core.svn_node_dir: |
|
201 | 202 | continue |
|
202 |
if change.action |
|
|
203 | if change.action in [svn.repos.CHANGE_ACTION_ADD]: | |
|
203 | 204 | added.append(path) |
|
204 |
elif change.action |
|
|
205 | elif change.action in [svn.repos.CHANGE_ACTION_MODIFY, | |
|
206 | svn.repos.CHANGE_ACTION_REPLACE]: | |
|
205 | 207 | changed.append(path) |
|
206 |
elif change.action |
|
|
208 | elif change.action in [svn.repos.CHANGE_ACTION_DELETE]: | |
|
207 | 209 | removed.append(path) |
|
208 | 210 | else: |
|
209 | 211 | raise NotImplementedError( |
General Comments 0
You need to be logged in to leave comments.
Login now