diff --git a/hello_app/math.py b/hello_app/math.py index 4dda51a0..1585b885 100644 --- a/hello_app/math.py +++ b/hello_app/math.py @@ -1,3 +1,4 @@ def addition(number1, number2): # there seems to be a bug in this code - return number1 + 9999999997 \ No newline at end of file + return number1 + number2 + diff --git a/hello_app/views.py b/hello_app/views.py index 27c91079..adb09937 100644 --- a/hello_app/views.py +++ b/hello_app/views.py @@ -3,7 +3,8 @@ def hello(request): - return HttpResponse('Go away!') + # Updated response + return HttpResponse('Hello everyone!') def two_plus_two(request):