From 90f66b178a01a50fdd521d36e8005f4fcd18bc45 Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Sun, 18 Dec 2016 16:26:54 -0500 Subject: build: Ensure tag suffix is not None in configure.py. --- make/configure.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/make/configure.py b/make/configure.py index c7a5fedc9..35bb397ac 100644 --- a/make/configure.py +++ b/make/configure.py @@ -833,7 +833,8 @@ class Project( Action ): self.vmajor = int(vmajor) self.vminor = int(vminor) self.vpoint = int(vpoint) - self.suffix = suffix + if suffix: + self.suffix = suffix if repo.type != 'release' or options.snapshot: self.version = repo.date.strftime("%Y%m%d%H%M%S") -- cgit v1.2.3