From 881a47f5c715f6c321f138c8648ba460a3404574 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 6 Sep 2013 12:42:54 +0530 Subject: [PATCH] [minor] moved developer mode to wn --- CONTRIBUTING.md | 2 +- startup/boot.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4164b2b6bb2..57fca34c40c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,7 +20,7 @@ We only accept issues that are bug reports or feature requests. Bugs must be iso 1. Screenshots (annotated with what should change) 1. Screenshots from other products if you want us to implement features present in other products. 1. Basically, the more you help us, the faster your request is likely to be completed. -1. A one line future request like **Implement Capacity Planning** will be closed. +1. A one line feature request like **Implement Capacity Planning** will be closed. ## Pull Requests diff --git a/startup/boot.py b/startup/boot.py index 48bdeec09cf..886b805db43 100644 --- a/startup/boot.py +++ b/startup/boot.py @@ -33,9 +33,8 @@ def boot_session(bootinfo): # load subscription info import conf - for key in ['max_users', 'expires_on', 'max_space', 'status', 'developer_mode', - 'commercial_support']: - if hasattr(conf, key): bootinfo[key] = getattr(conf, key) + for key in ['max_users', 'expires_on', 'max_space', 'status', 'commercial_support']: + if hasattr(conf, key): bootinfo[key] = getattr(conf, key) bootinfo['docs'] += webnotes.conn.sql("""select name, default_currency, cost_center from `tabCompany`""", as_dict=1, update={"doctype":":Company"})