From 0d53712761dac9766eeaaa09ef9dd495dba2d540 Mon Sep 17 00:00:00 2001 From: "Oleg E. Peil" Date: Fri, 20 Nov 2015 18:10:14 +0100 Subject: [PATCH] Changed the default behavior of NORMION option Now, NORMION is True by default, in accordance with the documentation. --- python/vasp/inpconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/vasp/inpconf.py b/python/vasp/inpconf.py index 0f3ecc24..8f13d72b 100644 --- a/python/vasp/inpconf.py +++ b/python/vasp/inpconf.py @@ -66,7 +66,7 @@ class ConfigParameters: self.gr_optional = { 'normalize' : ('normalize', self.parse_string_logical, True), - 'normion' : ('normion', self.parse_string_logical, False)} + 'normion' : ('normion', self.parse_string_logical, True)} self.gen_optional = { 'basename' : ('basename', str, 'vasp'),