Python - Advanced Exception Handling
Identify the issue in this code snippet:
def calculate(a, b):
if b == 0:
raise ZeroDivisionError('division by zero')
return a / b
print(calculate(5, 0))