diff --git a/Calendar/DebugConsole.py b/Calendar/DebugConsole.py index 8cb9354..199eabc 100644 --- a/Calendar/DebugConsole.py +++ b/Calendar/DebugConsole.py @@ -39,7 +39,7 @@ class DebugConsole (DebugInterface): print('Location: ' + str(forecast.location)) print('Fetch datetime: ' + str(forecast.fetch_datetime)) - def print (self, content): + def print_line (self, content): if content is None: return print(str(content)) \ No newline at end of file diff --git a/Calendar/DebugInterface.py b/Calendar/DebugInterface.py index 6982957..d15d066 100644 --- a/Calendar/DebugInterface.py +++ b/Calendar/DebugInterface.py @@ -6,5 +6,5 @@ class DebugInterface (object): def print_forecast (self, forecast): raise NotImplementedError("Functions needs to be implemented") - def print (self, content): + def print_line (self, content): raise NotImplementedError("Functions needs to be implemented") \ No newline at end of file