##// END OF EJS Templates
svn: Remove print statement and add __name__ to logger.
Martin Bornhold -
r566:884904c0 default
parent child Browse files
Show More
@@ -22,7 +22,7 b' from rhodecode.translation import lazy_u'
22 from rhodecode.events.base import RhodecodeEvent
22 from rhodecode.events.base import RhodecodeEvent
23
23
24
24
25 log = logging.getLogger()
25 log = logging.getLogger(__name__)
26
26
27
27
28 class RepoGroupEvent(RhodecodeEvent):
28 class RepoGroupEvent(RhodecodeEvent):
@@ -50,8 +50,6 b' def generate_mod_dav_svn_config(settings'
50 }
50 }
51 mod_dav_svn_config = render(template, context)
51 mod_dav_svn_config = render(template, context)
52
52
53 print mod_dav_svn_config
54
55 # Write configuration to file.
53 # Write configuration to file.
56 with open(filepath, 'w') as file_:
54 with open(filepath, 'w') as file_:
57 file_.write(mod_dav_svn_config)
55 file_.write(mod_dav_svn_config)
General Comments 0
You need to be logged in to leave comments. Login now