aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pym/euscan/helpers.py')
-rw-r--r--pym/euscan/helpers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/euscan/helpers.py b/pym/euscan/helpers.py
index 0c5430c..e987ba2 100644
--- a/pym/euscan/helpers.py
+++ b/pym/euscan/helpers.py
@@ -69,7 +69,8 @@ def version_is_nightly(a, b):
''' Try to skip nightly builds when not wanted (www-apps/moodle) '''
if len(a) != len(b) and len(b) == 2 and len(b[0]) == len('yyyymmdd'):
- return True
+ if b[0][:4] != '0000':
+ return True
return False
def version_blacklisted(cp, version):