diff --git a/erpnext/schools/doctype/student_group_creation_tool/student_group_creation_tool.json b/erpnext/schools/doctype/student_group_creation_tool/student_group_creation_tool.json index 3291d83019..dd011c3c38 100644 --- a/erpnext/schools/doctype/student_group_creation_tool/student_group_creation_tool.json +++ b/erpnext/schools/doctype/student_group_creation_tool/student_group_creation_tool.json @@ -176,7 +176,7 @@ "label": "Courses", "length": 0, "no_copy": 0, - "options": "SG Creation Tool Course", + "options": "Student Group Creation Tool Course", "permlevel": 0, "precision": "", "print_hide": 0, @@ -199,7 +199,7 @@ "issingle": 1, "istable": 0, "max_attachments": 0, - "modified": "2016-07-25 01:23:31.192112", + "modified": "2016-07-25 06:40:46.107131", "modified_by": "Administrator", "module": "Schools", "name": "Student Group Creation Tool", diff --git a/erpnext/schools/doctype/sg_creation_tool_course/__init__.py b/erpnext/schools/doctype/student_group_creation_tool_course/__init__.py similarity index 100% rename from erpnext/schools/doctype/sg_creation_tool_course/__init__.py rename to erpnext/schools/doctype/student_group_creation_tool_course/__init__.py diff --git a/erpnext/schools/doctype/sg_creation_tool_course/sg_creation_tool_course.json b/erpnext/schools/doctype/student_group_creation_tool_course/student_group_creation_tool_course.json similarity index 96% rename from erpnext/schools/doctype/sg_creation_tool_course/sg_creation_tool_course.json rename to erpnext/schools/doctype/student_group_creation_tool_course/student_group_creation_tool_course.json index 8814f883af..88466b60ab 100644 --- a/erpnext/schools/doctype/sg_creation_tool_course/sg_creation_tool_course.json +++ b/erpnext/schools/doctype/student_group_creation_tool_course/student_group_creation_tool_course.json @@ -147,10 +147,10 @@ "issingle": 0, "istable": 1, "max_attachments": 0, - "modified": "2016-07-21 12:31:41.252860", - "modified_by": "r@r.com", + "modified": "2016-07-25 06:40:49.000588", + "modified_by": "Administrator", "module": "Schools", - "name": "SG Creation Tool Course", + "name": "Student Group Creation Tool Course", "name_case": "", "owner": "Administrator", "permissions": [], diff --git a/erpnext/schools/doctype/sg_creation_tool_course/sg_creation_tool_course.py b/erpnext/schools/doctype/student_group_creation_tool_course/student_group_creation_tool_course.py similarity index 60% rename from erpnext/schools/doctype/sg_creation_tool_course/sg_creation_tool_course.py rename to erpnext/schools/doctype/student_group_creation_tool_course/student_group_creation_tool_course.py index 4024c69f1c..b3411ea7c5 100644 --- a/erpnext/schools/doctype/sg_creation_tool_course/sg_creation_tool_course.py +++ b/erpnext/schools/doctype/student_group_creation_tool_course/student_group_creation_tool_course.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2015, Frappe and contributors +# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors # For license information, please see license.txt from __future__ import unicode_literals import frappe from frappe.model.document import Document -class SGCreationToolCourse(Document): +class StudentGroupCreationToolCourse(Document): pass