From b1cf7ac5829ebbbe83c6045491ba38367e5aa64c Mon Sep 17 00:00:00 2001 From: Radostin Stoyanov Date: Sat, 26 Aug 2017 21:42:11 +0100 Subject: Define source code encoding The default source code encoding in Python2.* is ASCII (PEP 263 [1]) and in Python3.* is UTF-8 (PEP 3120 [2]). Define the encoding on top of each file for consistency. [1] https://www.python.org/dev/peps/pep-0263/ [2] https://www.python.org/dev/peps/pep-3120/ --- src/virtBootstrap/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'src/virtBootstrap/__init__.py') diff --git a/src/virtBootstrap/__init__.py b/src/virtBootstrap/__init__.py index 68bf28f..d5c7651 100644 --- a/src/virtBootstrap/__init__.py +++ b/src/virtBootstrap/__init__.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """ virt-bootstrap - Is a tool providing an easy way to setup the root file system for libvirt-based containers. -- cgit