diff options
author | pux <pux@pux.dom> | 2020-02-27 20:02:26 +0100 |
---|---|---|
committer | pux <pux@pux.dom> | 2020-02-27 20:02:26 +0100 |
commit | ca02d45a9b078aa1d385eed3721e215d41278048 (patch) | |
tree | ebb7a8cd05d8ec619f0f9a853d7c8245d8317296 /timebomb.py | |
parent | d63e62f9769dbbabfa71366e585ef5a5e41b726d (diff) | |
download | timebomb-ca02d45a9b078aa1d385eed3721e215d41278048.tar.gz timebomb-ca02d45a9b078aa1d385eed3721e215d41278048.tar.bz2 timebomb-ca02d45a9b078aa1d385eed3721e215d41278048.zip |
fix typo
Diffstat (limited to 'timebomb.py')
-rw-r--r-- | timebomb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/timebomb.py b/timebomb.py index c3229ce..bd9e594 100644 --- a/timebomb.py +++ b/timebomb.py @@ -60,7 +60,7 @@ def main(): message(m=time_m, s=time_s) def sleep(m, s): - time_sum_s = - (m * 60) + s + time_sum_s = (m * 60) + s time_m, time_s = divmod(time_sum_s, 60) print('Start: ' + time.ctime()) |