##// END OF EJS Templates
core: start notifying about import start on project load
super-admin -
r4949:9da9aac2 default
parent child Browse files
Show More
@@ -19,10 +19,14 b''
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 import os
21 import os
22 import platform
23 import datetime
24
22 from collections import OrderedDict
25 from collections import OrderedDict
23
26
24 import sys
27 now = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S.%f")
25 import platform
28
29 print(f'{now} Starting RhodeCode imports...')
26
30
27 VERSION = tuple(open(os.path.join(
31 VERSION = tuple(open(os.path.join(
28 os.path.dirname(__file__), 'VERSION')).read().split('.'))
32 os.path.dirname(__file__), 'VERSION')).read().split('.'))
General Comments 0
You need to be logged in to leave comments. Login now