##// END OF EJS Templates
make expression shorter, now the line fits into 80 chars
Thomas Arendsen Hein -
r10631:5247260c default
parent child Browse files
Show More
@@ -2886,7 +2886,7 b' def serve(ui, repo, **opts):'
2886 " accesslog errorlog webdir_conf certificate encoding")
2886 " accesslog errorlog webdir_conf certificate encoding")
2887 for o in optlist.split():
2887 for o in optlist.split():
2888 val = opts.get(o, '')
2888 val = opts.get(o, '')
2889 if val is None or val == '': # should check against default options instead
2889 if val in (None, ''): # should check against default options instead
2890 continue
2890 continue
2891 baseui.setconfig("web", o, val)
2891 baseui.setconfig("web", o, val)
2892 if repo and repo.ui != baseui:
2892 if repo and repo.ui != baseui:
General Comments 0
You need to be logged in to leave comments. Login now