diff options
Diffstat (limited to 'command.py')
-rw-r--r-- | command.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -231,7 +231,12 @@ class MirrorSafeCommand(object): | |||
231 | and does not require a working directory. | 231 | and does not require a working directory. |
232 | """ | 232 | """ |
233 | 233 | ||
234 | class RequiresGitcCommand(object): | 234 | class GitcAvailableCommand(object): |
235 | """Command that requires GITC to be available, but does | 235 | """Command that requires GITC to be available, but does |
236 | not require the local client to be a GITC client. | 236 | not require the local client to be a GITC client. |
237 | """ | 237 | """ |
238 | |||
239 | class GitcClientCommand(object): | ||
240 | """Command that requires the local client to be a GITC | ||
241 | client. | ||
242 | """ | ||