Skip to content

Commit

Permalink
updating shebang #36 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
iheitlager committed Apr 30, 2017
1 parent 179afde commit 29844c3
Show file tree
Hide file tree
Showing 30 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages

Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
__version__ = "0.5.1.dev0"

Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/contrib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
'''
Commonly used helper functions, to support in the setup of specific
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/contrib/dutch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
'''
commonly used dutch support functions
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/contrib/read.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import csv
import sys
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/emitters/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""Emitters are used to export models to output format.
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/emitters/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-


Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/emitters/csv.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

from data_migrator.emitters.base import BaseEmitter
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/emitters/mysql.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

from data_migrator.emitters.base import BaseEmitter
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""Explicit exceptions for this package
"""
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

"""
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/models/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from six import with_metaclass

Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/models/fields.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import uuid
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/models/manager.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

from data_migrator.exceptions import NonUniqueDataException
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/models/options.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

from collections import OrderedDict
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/transform.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import sys
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

from .compat import isstr
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/utils/argparser.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import sys
import argparse
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/utils/compat.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""helper functions for py2 -> p3 compat"""

Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/utils/log.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import logging.config
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/utils/sql.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from data_migrator.utils.compat import isstr

Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
2 changes: 1 addition & 1 deletion tests/test_contrib.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_defaults.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_emitter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_fields.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_manager.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_model.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_options.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import unittest
Expand Down

0 comments on commit 29844c3

Please sign in to comment.