Skip to content

Commit 0b0c379

Browse files
author
Gonchik Tsymzhitov
committed
Set coding parameters
1 parent 323fdbe commit 0b0c379

25 files changed

+25
-25
lines changed

atlassian/bamboo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
import logging
33
from .rest_client import AtlassianRestAPI
44

atlassian/bitbucket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
import logging
33
from .rest_client import AtlassianRestAPI
44

atlassian/confluence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from .rest_client import AtlassianRestAPI
33
from requests import HTTPError
44
import logging

atlassian/crowd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
import logging
33
from .rest_client import AtlassianRestAPI
44

atlassian/jira.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
import logging
33
from requests.exceptions import HTTPError
44
from .rest_client import AtlassianRestAPI

atlassian/portfolio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
import logging
33
from .rest_client import AtlassianRestAPI
44

atlassian/rest_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
import json
33
import logging
44
from six.moves.urllib.parse import urlencode

atlassian/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
import logging
33
import re
44

examples/bamboo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Bamboo
33
import os
44

examples/bamboo_activity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Bamboo
33
import os
44

examples/bitbucket-changes-between-branches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Bitbucket
33

44
bitbucket = Bitbucket(

examples/bitbucket-project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Bitbucket
33

44

examples/bitbucket-projects-administrators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
import logging
33
from atlassian import Bitbucket
44

examples/confluence-page-create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Confluence
33

44
confluence = Confluence(

examples/confluence-page-get.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Confluence
33

44
confluence = Confluence(

examples/confluence-page-update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Confluence
33

44
confluence = Confluence(

examples/crowd-get-group-nested-members.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Crowd
33
import os
44
import logging

examples/crowd-get-user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Crowd
33
import os
44
import logging

examples/jira-admins-confluence-page.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
import logging
33
from atlassian import Confluence
44
from atlassian import Jira

examples/jira-jql-query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Jira
33

44

examples/jira-project-administrators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Jira
33

44
jira = Jira(

examples/jira-project-leaders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from urllib.parse import quote
33
from atlassian import Jira
44

examples/jira-reindex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from time import sleep
33
from atlassian import Jira
44

examples/jira-sprint-rename.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Jira
33

44
jira = Jira(

tests/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf8 -*-
1+
# coding: utf8
22
from atlassian import Jira, Confluence, Bitbucket, Portfolio, Bamboo, Crowd
33
import os
44

0 commit comments

Comments
 (0)