Compare commits

...

2 commits

Author SHA1 Message Date
9b25bd8412 Prepare 0.3.2
All checks were successful
continuous-integration/drone/tag Build is passing
2023-04-22 15:05:36 +02:00
2ddbb56ce5 Fix result of current_zone when not importing the zone 2023-04-22 15:03:33 +02:00
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
--- ---
namespace: happydns namespace: happydns
name: happydomain name: happydomain
version: 0.3.1 version: 0.3.2
readme: README.md readme: README.md
authors: authors:
- happyDomain Team <happydomain.org> - happyDomain Team <happydomain.org>

View file

@ -62,7 +62,7 @@ def main():
result['current_zone'] = d.current_zone.id result['current_zone'] = d.current_zone.id
result['msg'] += " and zone imported" result['msg'] += " and zone imported"
else: else:
result['current_zone'] = d.current_zone result['current_zone'] = d.current_zone.id
break break
if not found: if not found: