Quellcode durchsuchen

Set the maximuml line length to 79 instead of 80

Guillaume Ayoub vor 13 Jahren
Ursprung
Commit
f593ab0fbd
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 1 1
      .pylintrc
  2. 1 1
      radicale/acl/courier.py

+ 1 - 1
.pylintrc

@@ -89,7 +89,7 @@ generated-members=
 [FORMAT]
 
 # Maximum number of characters on a single line.
-max-line-length=80
+max-line-length=79
 
 # Maximum number of lines in a module
 max-module-lines=1000

+ 1 - 1
radicale/acl/courier.py

@@ -58,6 +58,6 @@ def has_right(owner, user, password):
             return True
 
     # default is reject
-    # this alleviates the problem of a possibly empty reply from courier authlib
+    # this alleviates the problem of a possibly empty reply from authlib
     # see http://www.courier-mta.org/authlib/README_authlib.html#authpipeproto
     return False