From 37f36ef3012e86b075315f4e3f3a938da7062464 Mon Sep 17 00:00:00 2001 From: Martinez Date: Sun, 15 Oct 2017 10:00:39 +0200 Subject: [PATCH] minor string fix --- over/app.py | 2 +- over/version.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/over/app.py b/over/app.py index 65fab46..6c360f0 100644 --- a/over/app.py +++ b/over/app.py @@ -542,7 +542,7 @@ class Main: # App name and version print("[Application<.>]") - print(" %s<.>-%s<.> licensed under the %s<.>" %(self.name, self.version, self.license)) + print(" %s<.>-%s<.> licensed under %s<.>" %(self.name, self.version, self.license)) print(" using over-%s" %(version.str)) # Main features diff --git a/over/version.py b/over/version.py index e1d009c..ea54197 100644 --- a/over/version.py +++ b/over/version.py @@ -4,5 +4,5 @@ major = 2 # VERSION_MAJOR_IDENTIFIER minor = 0 # VERSION_MINOR_IDENTIFIER # VERSION_LAST_MM 2.0 -patch = 1 # VERSION_PATCH_IDENTIFIER -str = "2.0.1" # VERSION_STRING_IDENTIFIER +patch = 9 # VERSION_PATCH_IDENTIFIER +str = "2.0.9" # VERSION_STRING_IDENTIFIER