summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_remote_scheduler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py
index 6a6724fd..cd5845ca 100755
--- a/bin/reproducible_remote_scheduler.py
+++ b/bin/reproducible_remote_scheduler.py
@@ -105,7 +105,7 @@ for pkg in packages:
# tests whether the package is already building
result2 = query_db(query2.format(pkg=pkg, suite=suite))
try:
- if result2[0][0] != '':
+ if not result2[0][0]:
ids.append(result[0][0])
pkgs.append(pkg)
else: