mirror of
https://github.com/markqvist/Reticulum.git
synced 2026-06-08 14:11:53 -07:00
Fixed check for existing link at shutdown
This commit is contained in:
@@ -1119,7 +1119,7 @@ class ReticulumGitClient():
|
||||
|
||||
except Exception as e: self.abort(f"Error creating release: {e}")
|
||||
finally:
|
||||
if self.link: self.link.teardown()
|
||||
if hasattr(self, "link") and self.link: self.link.teardown()
|
||||
|
||||
def delete_release(self, remote=None, target=None):
|
||||
if not remote: self.abort(f"No remote specified")
|
||||
|
||||
Reference in New Issue
Block a user