Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
141
Merge Requests
141
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
61d02e09
Commit
61d02e09
authored
10 months ago
by
Jérome Perrin
Committed by
Arnaud Fontaine
7 months ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*: fix some problems reported by pylint
parent
d8f4b82a
No related merge requests found
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
18 additions
and
14 deletions
+18
-14
bt5/erp5_base/DocumentTemplateItem/portal_components/document.erp5.SimulatedDeliveryBuilder.py
...rtal_components/document.erp5.SimulatedDeliveryBuilder.py
+0
-1
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.EmailDocument.py
...lateItem/portal_components/document.erp5.EmailDocument.py
+5
-3
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.File.py
...umentTemplateItem/portal_components/document.erp5.File.py
+1
-1
product/ERP5/bootstrap/erp5_core/ExtensionTemplateItem/portal_components/extension.erp5.FolderWorkflowActionUtils.py
...al_components/extension.erp5.FolderWorkflowActionUtils.py
+0
-1
product/ERP5/bootstrap/erp5_core/MixinTemplateItem/portal_components/mixin.erp5.BaseExtensibleTraversableMixin.py
...l_components/mixin.erp5.BaseExtensibleTraversableMixin.py
+2
-0
product/ERP5/bootstrap/erp5_core/ModuleComponentTemplateItem/portal_components/module.erp5.MovementGroup.py
...mplateItem/portal_components/module.erp5.MovementGroup.py
+0
-1
product/PortalTransforms/utils.py
product/PortalTransforms/utils.py
+5
-4
product/Zelenium/generator.py
product/Zelenium/generator.py
+5
-3
No files found.
bt5/erp5_base/DocumentTemplateItem/portal_components/document.erp5.SimulatedDeliveryBuilder.py
View file @
61d02e09
...
...
@@ -99,7 +99,6 @@ class SimulatedDeliveryBuilder(BuilderMixin):
Redefine this method, because it seems nothing interesting can be
done before building Delivery.
"""
pass
security
.
declarePrivate
(
'searchMovementList'
)
@
UnrestrictedMethod
...
...
This diff is collapsed.
Click to expand it.
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.EmailDocument.py
View file @
61d02e09
...
...
@@ -48,10 +48,12 @@ except ImportError:
not installed yet.
"""
if
six
.
PY2
:
from
email
import
message_from_string
as
message_from_bytes
else
:
# pylint:disable=no-name-in-module
if
six
.
PY3
:
from
email
import
message_from_bytes
else
:
from
email
import
message_from_string
as
message_from_bytes
# pylint:enable=no-name-in-module
from
email.utils
import
parsedate_tz
,
mktime_tz
...
...
This diff is collapsed.
Click to expand it.
product/ERP5/bootstrap/erp5_core/DocumentTemplateItem/portal_components/document.erp5.File.py
View file @
61d02e09
...
...
@@ -153,7 +153,7 @@ class File(Document, OFS_File):
security
.
declarePrivate
(
'update_data'
)
def
update_data
(
self
,
*
args
,
**
kw
):
super
(
File
,
self
).
update_data
(
*
args
,
**
kw
)
if
six
.
PY2
and
isinstance
(
self
.
size
,
long
):
if
six
.
PY2
and
isinstance
(
self
.
size
,
long
):
# pylint:disable=undefined-variable
self
.
size
=
int
(
self
.
size
)
security
.
declareProtected
(
Permissions
.
ModifyPortalContent
,
'setFile'
)
...
...
This diff is collapsed.
Click to expand it.
product/ERP5/bootstrap/erp5_core/ExtensionTemplateItem/portal_components/extension.erp5.FolderWorkflowActionUtils.py
View file @
61d02e09
...
...
@@ -29,7 +29,6 @@
import
six
from
past.builtins
import
cmp
from
hashlib
import
md5
# Some workflow does not make sense in the context of mass transition and are
...
...
This diff is collapsed.
Click to expand it.
product/ERP5/bootstrap/erp5_core/MixinTemplateItem/portal_components/mixin.erp5.BaseExtensibleTraversableMixin.py
View file @
61d02e09
...
...
@@ -29,10 +29,12 @@
from
warnings
import
warn
import
six
# pylint:disable=no-name-in-module
if
six
.
PY2
:
from
base64
import
decodestring
as
decodebytes
else
:
from
base64
import
decodebytes
# pylint:enable=no-name-in-module
from
zLOG
import
LOG
from
AccessControl
import
ClassSecurityInfo
,
getSecurityManager
...
...
This diff is collapsed.
Click to expand it.
product/ERP5/bootstrap/erp5_core/ModuleComponentTemplateItem/portal_components/module.erp5.MovementGroup.py
View file @
61d02e09
...
...
@@ -31,7 +31,6 @@
from
collections
import
OrderedDict
from
warnings
import
warn
from
Products.PythonScripts.Utility
import
allow_class
from
Products.ERP5Type.Utils
import
ensure_list
class
MovementGroupNode
:
...
...
This diff is collapsed.
Click to expand it.
product/PortalTransforms/utils.py
View file @
61d02e09
...
...
@@ -4,11 +4,12 @@
import
io
import
six
if
six
.
PY2
:
from
email
import
message_from_string
as
message_from_bytes
else
:
# pylint:disable=no-name-in-module
if
six
.
PY3
:
from
email
import
message_from_bytes
else
:
from
email
import
message_from_string
as
message_from_bytes
# pylint:enable=no-name-in-module
class
TransformException
(
Exception
):
pass
...
...
This diff is collapsed.
Click to expand it.
product/Zelenium/generator.py
View file @
61d02e09
...
...
@@ -12,10 +12,12 @@ import glob
import
cgi
from
six.moves
import
urllib
import
multifile
if
six
.
PY2
:
from
email
import
message_from_file
as
message_from_bytes
else
:
# pylint:disable=no-name-in-module
if
six
.
PY3
:
from
email
import
message_from_bytes
else
:
from
email
import
message_from_string
as
message_from_bytes
# pylint:enable=no-name-in-module
_TEST_CASE_HEADER
=
"""
\
<html>
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment