summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaptor Engineering Development Team <support@raptorengineering.com>2018-06-03 23:26:09 -0500
committerRaptor Engineering Development Team <support@raptorengineering.com>2018-06-03 23:26:09 -0500
commita9caa69e978247d69f27353b8ec27e835adf9c9b (patch)
tree2de6332ef501bac4019b20dbd6aec9a4be7f6e33
parent257b47cc072d5ac64cb2cafdde3f9de26246c747 (diff)
downloadvpdtools-a9caa69e978247d69f27353b8ec27e835adf9c9b.tar.gz
vpdtools-a9caa69e978247d69f27353b8ec27e835adf9c9b.zip
Fix bucket validity length check
-rwxr-xr-xwoferclock/update_poundv_buckets2
1 files changed, 1 insertions, 1 deletions
diff --git a/woferclock/update_poundv_buckets b/woferclock/update_poundv_buckets
index db8b48e..6ae0a26 100755
--- a/woferclock/update_poundv_buckets
+++ b/woferclock/update_poundv_buckets
@@ -86,7 +86,7 @@ for index in range (0, 5):
if bucket[index][2:].startswith("0000"):
continue
- if len(bucket[index][2:]) != 122:
+ if len(bucket[index][2:]) != 120:
if destination_bucket == (index + 1):
print "[ERROR] Source bucket invalid"
sys.exit(1)
OpenPOWER on IntegriCloud