1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-11-11 16:35:35 +01:00

Implement git-obs command with several subcommands

This commit is contained in:
2024-08-02 15:10:32 +02:00
parent 0d28997595
commit 7e52a4a050
20 changed files with 545 additions and 12 deletions

View File

@@ -62,3 +62,8 @@ class ForkExists(GiteaException):
def __str__(self):
result = f"Repo '{self.owner}/{self.repo}' is already forked as '{self.fork_owner}/{self.fork_repo}'"
return result
class InvalidSshPublicKey(oscerr.OscBaseError):
def __str__(self):
return "Invalid public ssh key"