Skip to content

Commit

Permalink
Merge pull request #652 from mbeacom/utf8-coding
Browse files Browse the repository at this point in the history
Standardize utf8 file coding declarations
  • Loading branch information
Mark Beacom authored Sep 8, 2017
2 parents 0fd5c5c + 7009822 commit e04b348
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/events.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# encoding: utf-8
# -*- coding: utf-8 -*-

"""
This is an example of a locustfile that uses Locust's built in event hooks to
Expand Down
2 changes: 1 addition & 1 deletion locust/runners.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# coding=UTF-8
# -*- coding: utf-8 -*-
import socket
import traceback
import warnings
Expand Down
2 changes: 1 addition & 1 deletion locust/test/test_web.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# encoding: utf-8
# -*- coding: utf-8 -*-

import csv
import json
Expand Down
2 changes: 1 addition & 1 deletion locust/web.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# encoding: utf-8
# -*- coding: utf-8 -*-

import csv
import json
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# encoding: utf-8
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages
import os, re, ast
Expand Down

0 comments on commit e04b348

Please sign in to comment.