mirror of
https://github.com/kiviktnm/decman.git
synced 2026-09-19 12:08:28 +00:00
Fix source and target ordering on file install errors
This commit is contained in:
@@ -12,7 +12,7 @@ class FSInstallationFailedError(Exception):
|
|||||||
Error raised when trying to install a file/directory to a target.
|
Error raised when trying to install a file/directory to a target.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, target: str, source: str, reason: str):
|
def __init__(self, source: str, target: str, reason: str):
|
||||||
self.source = source
|
self.source = source
|
||||||
self.target = target
|
self.target = target
|
||||||
super().__init__(f"Failed to install file from {source} to {target}: {reason}.")
|
super().__init__(f"Failed to install file from {source} to {target}: {reason}.")
|
||||||
|
|||||||
Reference in New Issue
Block a user