diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-05-08 23:49:01 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-08 23:59:40 +0200 |
commit | b9069f32459f2a1e1d270c3aa68ecfc75f84a8b0 (patch) | |
tree | 6032935bf94d4e832a302e3c5f952f00c5d32be3 | |
parent | e5249a2accbcfc2f5b6f9c7615d1056a6dcc20a4 (diff) | |
download | jenkins.debian.net-b9069f32459f2a1e1d270c3aa68ecfc75f84a8b0.tar.xz |
reproducible: remote_scheduler: fix typo
-rwxr-xr-x | bin/reproducible_remote_scheduler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py index dce8a504..27916538 100755 --- a/bin/reproducible_remote_scheduler.py +++ b/bin/reproducible_remote_scheduler.py @@ -142,7 +142,7 @@ query2 = '''INSTERT INTO manual_scheduler cursor = conn_db.cursor() cursor.executemany(query1, to_schedule) -cursor.executemanu(query2, save_schedule) +cursor.executemany(query2, save_schedule) conn_db.commit() log.info(bcolors.GOOD + message + bcolors.ENDC) |