You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2021/06/03 10:03:50 UTC

[incubator-ponymail-foal] branch master updated: add shebang and unicode marker

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new c4447f5  add shebang and unicode marker
c4447f5 is described below

commit c4447f528d3ec8440c11d64dd3c44999f97ec407
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Thu Jun 3 12:03:40 2021 +0200

    add shebang and unicode marker
---
 server/plugins/oauthGeneric.py | 2 ++
 server/plugins/oauthGithub.py  | 2 ++
 server/plugins/oauthGoogle.py  | 2 ++
 server/plugins/server.py       | 2 ++
 4 files changed, 8 insertions(+)

diff --git a/server/plugins/oauthGeneric.py b/server/plugins/oauthGeneric.py
index d20a73f..027747b 100644
--- a/server/plugins/oauthGeneric.py
+++ b/server/plugins/oauthGeneric.py
@@ -1,3 +1,5 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information
diff --git a/server/plugins/oauthGithub.py b/server/plugins/oauthGithub.py
index 0d88e0f..07d6f6a 100644
--- a/server/plugins/oauthGithub.py
+++ b/server/plugins/oauthGithub.py
@@ -1,3 +1,5 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information
diff --git a/server/plugins/oauthGoogle.py b/server/plugins/oauthGoogle.py
index c59c94a..d4b6b36 100644
--- a/server/plugins/oauthGoogle.py
+++ b/server/plugins/oauthGoogle.py
@@ -1,3 +1,5 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information
diff --git a/server/plugins/server.py b/server/plugins/server.py
index c7240b9..ae5be2f 100644
--- a/server/plugins/server.py
+++ b/server/plugins/server.py
@@ -1,3 +1,5 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information