diff options
author | Papoteur <papoteur@mageia.org> | 2023-07-14 09:13:34 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2023-08-01 15:49:11 +0200 |
commit | 9d8775f70069e22fed33bfa9e6397394494b6db5 (patch) | |
tree | fbc10ef80a68ecd86ee0d0311c76713484e56f68 | |
parent | 1cbf0fb4e5717e401c1799120c1f0ab014d5a20c (diff) | |
download | isodumper-9d8775f70069e22fed33bfa9e6397394494b6db5.tar isodumper-9d8775f70069e22fed33bfa9e6397394494b6db5.tar.gz isodumper-9d8775f70069e22fed33bfa9e6397394494b6db5.tar.bz2 isodumper-9d8775f70069e22fed33bfa9e6397394494b6db5.tar.xz isodumper-9d8775f70069e22fed33bfa9e6397394494b6db5.zip |
Fix the closing of magiback
-rwxr-xr-x | backend/magiback | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/magiback b/backend/magiback index f4a960c..108618a 100755 --- a/backend/magiback +++ b/backend/magiback @@ -136,7 +136,8 @@ class Isodumper(raw_write.Dumper): def close(self): logging.info("Closing") - self.loop.quit() + # Close the loop from the main function + loop.quit() @property def progress(self): |