Index: shared/scripts/configuration/utility.py =================================================================== diff -u -rb634bdd10b66a9b76dd6c3898b27f60bd25bcbdc -rd996aaf31adc64849c4d3c5b13ca4b677ae6a4be --- shared/scripts/configuration/utility.py (.../utility.py) (revision b634bdd10b66a9b76dd6c3898b27f60bd25bcbdc) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision d996aaf31adc64849c4d3c5b13ca4b677ae6a4be) @@ -26,11 +26,11 @@ -def get_current_date_and_time(date_format='%Y/%b/%d - %H:%M:%S'): +def get_current_date_and_time(date_format='%Y/%m/%d - %H:%M:%S'): """ - Method to get current date and time. - @input date_format (str) - format of date to be retrieved. - @return (str) - date in specified format. + Method to get current date and time. + @input date_format (str) - format of date to be retrieved. + @return (str) - date in specified format. """ date = datetime.now() return str(date.strftime(date_format))