Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-07-01 11:55:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-07-01 11:55:44 +0400
commit94540152894b9b43bd54e771cf2821408ccd9bf0 (patch)
tree670273e94e529cfce1fa0ed9459c120ebd84178e /release/scripts/templates/operator_file_import.py
parent7ef55c62f38682516d6d0b51816daf5190b75b97 (diff)
style cleanup: remove '.' from docstring endings and use quotes for descriptions.
Diffstat (limited to 'release/scripts/templates/operator_file_import.py')
-rw-r--r--release/scripts/templates/operator_file_import.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/templates/operator_file_import.py b/release/scripts/templates/operator_file_import.py
index 80d850aae60..9940a1b98eb 100644
--- a/release/scripts/templates/operator_file_import.py
+++ b/release/scripts/templates/operator_file_import.py
@@ -21,7 +21,7 @@ from bpy.types import Operator
class ImportSomeData(Operator, ImportHelper):
- '''This appears in the tooltip of the operator and in the generated docs'''
+ """This appears in the tooltip of the operator and in the generated docs"""
bl_idname = "import_test.some_data" # important since its how bpy.ops.import_test.some_data is constructed
bl_label = "Import Some Data"