From c6e785773e665fd88d6a4f94ebca6e8b3bc8e496 Mon Sep 17 00:00:00 2001 From: Stephen Gates Date: Thu, 20 Sep 2018 23:18:22 -0500 Subject: [PATCH] Completed renaming started in f3f6701306aa0d034bbe9329503d3406bd8fa963 --- problems/py101/trackcoder/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/problems/py101/trackcoder/app.py b/problems/py101/trackcoder/app.py index ba766fe..67c3660 100644 --- a/problems/py101/trackcoder/app.py +++ b/problems/py101/trackcoder/app.py @@ -36,13 +36,13 @@ def parse(input): a p 120 """ input = input.strip() - cmd, task, mins, despcription = ['']*4 + cmd, task, mins, description = ['']*4 try: cmd, task, mins, *description = input.split() description = ' '.join(description) return cmd, task, mins, description except ValueError: - return input, task, mins, despcription + return input, task, mins, description def add(**kwargs):