Skip to content
This repository has been archived by the owner on May 18, 2019. It is now read-only.

Commit

Permalink
More Travis fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Triangle717 committed Jul 6, 2014
1 parent 6abd363 commit 7b177ac
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 26 deletions.
29 changes: 15 additions & 14 deletions import_ldraw.py
@@ -1,21 +1,22 @@
# -*- coding: utf-8 -*-
"""BEGIN GPL LICENSE BLOCK
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
END GPL LICENSE BLOCK
END GPL LICENSE BLOCK
"""

bl_info = {
Expand Down Expand Up @@ -549,7 +550,7 @@ def getCyclesEmit(name, diff_color, alpha, luminance):


def getCyclesChrome(name, diff_color):
"""Cycles Chrome Material"""
"""Cycles render engine Chrome material."""
mat = bpy.data.materials.new(name)
mat.use_nodes = True

Expand Down Expand Up @@ -607,7 +608,7 @@ def getCyclesPearlMetal(name, diff_color, roughness):


def getCyclesRubber(name, diff_color, alpha):
"""Cycles Rubber Material"""
"""Cycles render engine Rubber material."""
mat = bpy.data.materials.new(name)
mat.use_nodes = True

Expand Down
25 changes: 13 additions & 12 deletions setup.py
@@ -1,22 +1,23 @@
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
"""BEGIN GPL LICENSE BLOCK
"""Release packaging script for LDR Importer.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
END GPL LICENSE BLOCK
END GPL LICENSE BLOCK
"""

# <pep8-80 compliant>
Expand Down

0 comments on commit 7b177ac

Please sign in to comment.