Kaynağa Gözat

[fix] Added unicode_literals if missing in py files

version-14
Anand Doshi 10 yıl önce
ebeveyn
işleme
f3b37df2dd
55 değiştirilmiş dosya ile 55 ekleme ve 0 silme
  1. +1
    -0
      frappe/__version__.py
  2. +1
    -0
      frappe/api.py
  3. +1
    -0
      frappe/app.py
  4. +1
    -0
      frappe/config/desktop.py
  5. +1
    -0
      frappe/config/setup.py
  6. +1
    -0
      frappe/config/website.py
  7. +1
    -0
      frappe/core/doctype/communication/test_communication.py
  8. +1
    -0
      frappe/core/doctype/doctype/boilerplate/test_controller.py
  9. +1
    -0
      frappe/core/doctype/email_alert/test_email_alert.py
  10. +1
    -0
      frappe/core/doctype/event/test_event.py
  11. +1
    -0
      frappe/core/doctype/letter_head/test_letter_head.py
  12. +1
    -0
      frappe/core/doctype/page/test_page.py
  13. +1
    -0
      frappe/core/doctype/print_format/test_print_format.py
  14. +1
    -0
      frappe/core/doctype/role/test_role.py
  15. +1
    -0
      frappe/core/doctype/user/test_user.py
  16. +1
    -0
      frappe/core/doctype/version/test_version.py
  17. +1
    -0
      frappe/core/doctype/workflow_state/test_workflow_state.py
  18. +1
    -0
      frappe/core/page/data_import_tool/test_exporter_fixtures.py
  19. +1
    -0
      frappe/hooks.py
  20. +1
    -0
      frappe/patches/v4_0/add_delete_permission.py
  21. +1
    -0
      frappe/patches/v4_0/remove_index_sitemap.py
  22. +1
    -0
      frappe/patches/v4_0/rename_profile_to_user.py
  23. +1
    -0
      frappe/patches/v4_0/rename_sitemap_to_route.py
  24. +1
    -0
      frappe/patches/v4_0/set_todo_checked_as_closed.py
  25. +1
    -0
      frappe/patches/v4_0/set_website_route_idx.py
  26. +1
    -0
      frappe/patches/v4_0/update_datetime.py
  27. +1
    -0
      frappe/patches/v4_0/webnotes_to_frappe.py
  28. +1
    -0
      frappe/patches/v4_2/refactor_website_routing.py
  29. +1
    -0
      frappe/patches/v4_2/set_assign_in_doc.py
  30. +1
    -0
      frappe/setup_logging.py
  31. +1
    -0
      frappe/templates/includes/comments.py
  32. +1
    -0
      frappe/templates/pages/404.py
  33. +1
    -0
      frappe/templates/pages/update_password.py
  34. +1
    -0
      frappe/tests/test_assign.py
  35. +1
    -0
      frappe/tests/test_client_login.py
  36. +1
    -0
      frappe/tests/test_data_import.py
  37. +1
    -0
      frappe/tests/test_db_query.py
  38. +1
    -0
      frappe/tests/test_defaults.py
  39. +1
    -0
      frappe/tests/test_document.py
  40. +1
    -0
      frappe/tests/test_filemanager.py
  41. +1
    -0
      frappe/tests/test_fmt_money.py
  42. +1
    -0
      frappe/tests/test_form_load.py
  43. +1
    -0
      frappe/tests/test_geo_ip.py
  44. +1
    -0
      frappe/tests/test_translation.py
  45. +1
    -0
      frappe/utils/bench_helper.py
  46. +1
    -0
      frappe/utils/doctor.py
  47. +1
    -0
      frappe/utils/email_lib/html2text.py
  48. +1
    -0
      frappe/utils/minify.py
  49. +1
    -0
      frappe/utils/momentjs.py
  50. +1
    -0
      frappe/utils/pdf.py
  51. +1
    -0
      frappe/website/doctype/blog_category/test_blog_category.py
  52. +1
    -0
      frappe/website/doctype/blog_post/test_blog_post.py
  53. +1
    -0
      frappe/website/doctype/blogger/test_blogger.py
  54. +1
    -0
      frappe/website/doctype/web_form/test_web_form.py
  55. +1
    -0
      frappe/website/doctype/website_group/test_website_group.py

+ 1
- 0
frappe/__version__.py Dosyayı Görüntüle

@@ -1 +1,2 @@
from __future__ import unicode_literals
__version__ = "4.12.1" __version__ = "4.12.1"

+ 1
- 0
frappe/api.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import json import json
import frappe import frappe


+ 1
- 0
frappe/app.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import sys, os import sys, os
import json import json


+ 1
- 0
frappe/config/desktop.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
from frappe import _ from frappe import _


def get_data(): def get_data():


+ 1
- 0
frappe/config/setup.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
from frappe import _ from frappe import _
from frappe.widgets.moduleview import add_setup_section from frappe.widgets.moduleview import add_setup_section




+ 1
- 0
frappe/config/website.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
from frappe import _ from frappe import _


def get_data(): def get_data():


+ 1
- 0
frappe/core/doctype/communication/test_communication.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# See license.txt # See license.txt
from __future__ import unicode_literals


import frappe import frappe
import unittest import unittest


+ 1
- 0
frappe/core/doctype/doctype/boilerplate/test_controller.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, {app_publisher} and Contributors # Copyright (c) 2013, {app_publisher} and Contributors
# See license.txt # See license.txt
from __future__ import unicode_literals


import frappe import frappe
import unittest import unittest


+ 1
- 0
frappe/core/doctype/email_alert/test_email_alert.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# See license.txt # See license.txt
from __future__ import unicode_literals


import frappe, frappe.utils, frappe.utils.scheduler import frappe, frappe.utils, frappe.utils.scheduler
import unittest import unittest


+ 1
- 0
frappe/core/doctype/event/test_event.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


"""Use blog post test to test user permissions logic""" """Use blog post test to test user permissions logic"""




+ 1
- 0
frappe/core/doctype/letter_head/test_letter_head.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe import frappe



+ 1
- 0
frappe/core/doctype/page/test_page.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# See license.txt # See license.txt
from __future__ import unicode_literals


import frappe import frappe
import unittest import unittest


+ 1
- 0
frappe/core/doctype/print_format/test_print_format.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# See license.txt # See license.txt
from __future__ import unicode_literals


import frappe import frappe
import unittest import unittest


+ 1
- 0
frappe/core/doctype/role/test_role.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe import frappe



+ 1
- 0
frappe/core/doctype/user/test_user.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe, unittest import frappe, unittest




+ 1
- 0
frappe/core/doctype/version/test_version.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# See license.txt # See license.txt
from __future__ import unicode_literals


import frappe import frappe
import unittest import unittest


+ 1
- 0
frappe/core/doctype/workflow_state/test_workflow_state.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe import frappe



+ 1
- 0
frappe/core/page/data_import_tool/test_exporter_fixtures.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe import frappe
import frappe.defaults import frappe.defaults


+ 1
- 0
frappe/hooks.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
app_name = "frappe" app_name = "frappe"
app_title = "Frappe Framework" app_title = "Frappe Framework"
app_publisher = "Web Notes Technologies Pvt. Ltd." app_publisher = "Web Notes Technologies Pvt. Ltd."


+ 1
- 0
frappe/patches/v4_0/add_delete_permission.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import frappe import frappe


def execute(): def execute():


+ 1
- 0
frappe/patches/v4_0/remove_index_sitemap.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import frappe import frappe


def execute(): def execute():


+ 1
- 0
frappe/patches/v4_0/rename_profile_to_user.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import frappe import frappe


from frappe.model import rename_field from frappe.model import rename_field


+ 1
- 0
frappe/patches/v4_0/rename_sitemap_to_route.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import frappe import frappe


from frappe.model import rename_field from frappe.model import rename_field


+ 1
- 0
frappe/patches/v4_0/set_todo_checked_as_closed.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import frappe import frappe


def execute(): def execute():


+ 1
- 0
frappe/patches/v4_0/set_website_route_idx.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import frappe import frappe


def execute(): def execute():


+ 1
- 0
frappe/patches/v4_0/update_datetime.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import frappe import frappe


def execute(): def execute():


+ 1
- 0
frappe/patches/v4_0/webnotes_to_frappe.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import frappe, json import frappe, json


def execute(): def execute():


+ 1
- 0
frappe/patches/v4_2/refactor_website_routing.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import frappe import frappe


def execute(): def execute():


+ 1
- 0
frappe/patches/v4_2/set_assign_in_doc.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import frappe import frappe


def execute(): def execute():


+ 1
- 0
frappe/setup_logging.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import frappe import frappe
import logging import logging
import logging.config import logging.config


+ 1
- 0
frappe/templates/includes/comments.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe import frappe
import frappe.utils, markdown2 import frappe.utils, markdown2


+ 1
- 0
frappe/templates/pages/404.py Dosyayı Görüntüle

@@ -1,4 +1,5 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


no_sitemap = 1 no_sitemap = 1

+ 1
- 0
frappe/templates/pages/update_password.py Dosyayı Görüntüle

@@ -1,4 +1,5 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


no_sitemap = 1 no_sitemap = 1

+ 1
- 0
frappe/tests/test_assign.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2014, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2014, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe, unittest import frappe, unittest
import frappe.widgets.form.assign_to import frappe.widgets.form.assign_to


+ 1
- 0
frappe/tests/test_client_login.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import unittest, frappe import unittest, frappe
from frappe.utils import sel from frappe.utils import sel


+ 1
- 0
frappe/tests/test_data_import.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2014, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2014, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe, unittest import frappe, unittest
from frappe.core.page.data_import_tool import exporter from frappe.core.page.data_import_tool import exporter


+ 1
- 0
frappe/tests/test_db_query.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe, unittest import frappe, unittest




+ 1
- 0
frappe/tests/test_defaults.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe, unittest import frappe, unittest




+ 1
- 0
frappe/tests/test_document.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe, unittest import frappe, unittest




+ 1
- 0
frappe/tests/test_filemanager.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe import frappe
import os import os


+ 1
- 0
frappe/tests/test_fmt_money.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe import frappe
from frappe import _ from frappe import _


+ 1
- 0
frappe/tests/test_form_load.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe, unittest import frappe, unittest
from frappe.widgets.form.meta import get_meta from frappe.widgets.form.meta import get_meta


+ 1
- 0
frappe/tests/test_geo_ip.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe import frappe
import unittest import unittest


+ 1
- 0
frappe/tests/test_translation.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe, unittest, os import frappe, unittest, os
import frappe.translate import frappe.translate


+ 1
- 0
frappe/utils/bench_helper.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import click import click
import frappe import frappe
import importlib import importlib


+ 1
- 0
frappe/utils/doctor.py Dosyayı Görüntüle

@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import json, base64, os import json, base64, os
import frappe.cli import frappe.cli
from frappe.celery_app import get_celery from frappe.celery_app import get_celery


+ 1
- 0
frappe/utils/email_lib/html2text.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
"""html2text: Turn HTML into equivalent Markdown-structured text.""" """html2text: Turn HTML into equivalent Markdown-structured text."""
from __future__ import unicode_literals
__version__ = "3.200.3" __version__ = "3.200.3"
__author__ = "Aaron Swartz (me@aaronsw.com)" __author__ = "Aaron Swartz (me@aaronsw.com)"
__copyright__ = "(C) 2004-2008 Aaron Swartz. GNU GPL 3." __copyright__ = "(C) 2004-2008 Aaron Swartz. GNU GPL 3."


+ 1
- 0
frappe/utils/minify.py Dosyayı Görüntüle

@@ -27,6 +27,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE. # SOFTWARE.
# */ # */
from __future__ import unicode_literals


from StringIO import StringIO from StringIO import StringIO




+ 1
- 0
frappe/utils/momentjs.py Dosyayı Görüntüle

@@ -1,4 +1,5 @@
# get data for moment.js # get data for moment.js
from __future__ import unicode_literals
def update(tz, out): def update(tz, out):
ltz = data["links"].get(tz, tz) ltz = data["links"].get(tz, tz)
zone = data["zones"].get(ltz) zone = data["zones"].get(ltz)


+ 1
- 0
frappe/utils/pdf.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import pdfkit, os, frappe import pdfkit, os, frappe
from frappe.utils import scrub_urls from frappe.utils import scrub_urls


+ 1
- 0
frappe/website/doctype/blog_category/test_blog_category.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


import frappe import frappe



+ 1
- 0
frappe/website/doctype/blog_post/test_blog_post.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals


"""Use blog post test to test user permissions logic""" """Use blog post test to test user permissions logic"""




+ 1
- 0
frappe/website/doctype/blogger/test_blogger.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt # MIT License. See license.txt
from __future__ import unicode_literals




import frappe import frappe

+ 1
- 0
frappe/website/doctype/web_form/test_web_form.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# See license.txt # See license.txt
from __future__ import unicode_literals


import frappe import frappe
import unittest import unittest


+ 1
- 0
frappe/website/doctype/website_group/test_website_group.py Dosyayı Görüntüle

@@ -1,5 +1,6 @@
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# See license.txt # See license.txt
from __future__ import unicode_literals


import frappe import frappe
import unittest import unittest


Yükleniyor…
İptal
Kaydet