summaryrefslogtreecommitdiffstats
path: root/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'command.py')
-rw-r--r--command.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/command.py b/command.py
index 9d5d56ee..a6189ed6 100644
--- a/command.py
+++ b/command.py
@@ -46,7 +46,7 @@ class UsageError(RepoExitError):
46 """Exception thrown with invalid command usage.""" 46 """Exception thrown with invalid command usage."""
47 47
48 48
49class Command(object): 49class Command:
50 """Base class for any command line action in repo.""" 50 """Base class for any command line action in repo."""
51 51
52 # Singleton for all commands to track overall repo command execution and 52 # Singleton for all commands to track overall repo command execution and
@@ -498,11 +498,11 @@ class PagedCommand(Command):
498 return True 498 return True
499 499
500 500
501class MirrorSafeCommand(object): 501class MirrorSafeCommand:
502 """Command permits itself to run within a mirror, and does not require a 502 """Command permits itself to run within a mirror, and does not require a
503 working directory. 503 working directory.
504 """ 504 """
505 505
506 506
507class GitcClientCommand(object): 507class GitcClientCommand:
508 """Command that requires the local client to be a GITC client.""" 508 """Command that requires the local client to be a GITC client."""