Merge pull request 'fix: Avoid exception when output is missing for exports' (#4) from fix-exception-with-missing-output into develop
Reviewed-on: https://git.gieszer.link/gcrkrause/mastodon-blocklist-deploy/pulls/4
This commit is contained in:
		@@ -97,6 +97,9 @@ def cli():
 | 
				
			|||||||
        diffs = Instance.list_diffs(local_blocklist, remote_blocklist)
 | 
					        diffs = Instance.list_diffs(local_blocklist, remote_blocklist)
 | 
				
			||||||
        Instance.apply_blocks_from_diff(diffs, args.server, args.token, args.no_delete)
 | 
					        Instance.apply_blocks_from_diff(diffs, args.server, args.token, args.no_delete)
 | 
				
			||||||
    elif args.action == "export":
 | 
					    elif args.action == "export":
 | 
				
			||||||
 | 
					        if not args.output:
 | 
				
			||||||
 | 
					            print("Export currently requires to pass --output as well")
 | 
				
			||||||
 | 
					        else:
 | 
				
			||||||
            export_blocklist_toml(remote_blocklist, args.output)
 | 
					            export_blocklist_toml(remote_blocklist, args.output)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user