From fb367778d6b19a66a7ea30f42730074526960e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Wei=C3=9Fmann?= Date: Wed, 3 Feb 2016 18:28:36 +0100 Subject: [PATCH] Adds encoding line to missing files --- pwgrep/__init__.py | 2 ++ pwgrep/commandline_parser_result.py | 2 ++ pwgrep/grepper.py | 3 +++ pwgrep/printer_helper.py | 3 +++ pwgrep/search_result.py | 3 +++ 5 files changed, 13 insertions(+) diff --git a/pwgrep/__init__.py b/pwgrep/__init__.py index e69de29..faa18be 100644 --- a/pwgrep/__init__.py +++ b/pwgrep/__init__.py @@ -0,0 +1,2 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- diff --git a/pwgrep/commandline_parser_result.py b/pwgrep/commandline_parser_result.py index 9fefa82..afb1c29 100644 --- a/pwgrep/commandline_parser_result.py +++ b/pwgrep/commandline_parser_result.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- """CommandLineParser Result""" import os diff --git a/pwgrep/grepper.py b/pwgrep/grepper.py index fc96041..1b990cd 100644 --- a/pwgrep/grepper.py +++ b/pwgrep/grepper.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + from pwgrep import file_helper from pwgrep import printer_helper from pwgrep.regex_searcher import RegexSearcher diff --git a/pwgrep/printer_helper.py b/pwgrep/printer_helper.py index 05e4931..9783b71 100644 --- a/pwgrep/printer_helper.py +++ b/pwgrep/printer_helper.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + from __future__ import print_function import sys diff --git a/pwgrep/search_result.py b/pwgrep/search_result.py index baaf1e2..15987c2 100644 --- a/pwgrep/search_result.py +++ b/pwgrep/search_result.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + class SearchResult(object): def __init__(self):