summaryrefslogtreecommitdiff
path: root/client/modules
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-09-10 17:21:59 -0400
committerschneefux <schneefux+commit@schneefux.xyz>2014-09-10 17:21:59 -0400
commit8233bd3e1ded9edf607df142c9b13f302f957def (patch)
tree44a5545dff3b64ee1159856076ebae5b2dce4bce /client/modules
parent4bb5053efde9f40acc9be3033c517bf391e01eca (diff)
parent16885dbcc25c01d5db2bf1dbc681828cfc06b70b (diff)
downloadjasper-client-8233bd3e1ded9edf607df142c9b13f302f957def.tar.gz
jasper-client-8233bd3e1ded9edf607df142c9b13f302f957def.zip
Merge pull request #154 from Holzhaus/shebangs
Added shebangs and PEP 0263 source encodings
Diffstat (limited to 'client/modules')
-rw-r--r--client/modules/Birthday.py1
-rw-r--r--client/modules/Gmail.py1
-rw-r--r--client/modules/HN.py1
-rw-r--r--client/modules/Joke.py1
-rw-r--r--client/modules/Life.py1
-rw-r--r--client/modules/News.py1
-rw-r--r--client/modules/Notifications.py1
-rw-r--r--client/modules/Time.py1
-rw-r--r--client/modules/Unclear.py1
-rw-r--r--client/modules/Weather.py1
-rw-r--r--client/modules/app_utils.py1
11 files changed, 11 insertions, 0 deletions
diff --git a/client/modules/Birthday.py b/client/modules/Birthday.py
index 1388443..b484a4f 100644
--- a/client/modules/Birthday.py
+++ b/client/modules/Birthday.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
import datetime
import re
from facebook import *
diff --git a/client/modules/Gmail.py b/client/modules/Gmail.py
index b401ae6..dfb6854 100644
--- a/client/modules/Gmail.py
+++ b/client/modules/Gmail.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
import imaplib
import email
import re
diff --git a/client/modules/HN.py b/client/modules/HN.py
index 863d40a..ec7ecef 100644
--- a/client/modules/HN.py
+++ b/client/modules/HN.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
import urllib2
import re
import random
diff --git a/client/modules/Joke.py b/client/modules/Joke.py
index 52b3eb9..802047c 100644
--- a/client/modules/Joke.py
+++ b/client/modules/Joke.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
import random
import re
diff --git a/client/modules/Life.py b/client/modules/Life.py
index 2c79ee1..4cafd75 100644
--- a/client/modules/Life.py
+++ b/client/modules/Life.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
import random
import re
diff --git a/client/modules/News.py b/client/modules/News.py
index 8b4b9a3..d80b791 100644
--- a/client/modules/News.py
+++ b/client/modules/News.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
import feedparser
import app_utils
import re
diff --git a/client/modules/Notifications.py b/client/modules/Notifications.py
index fc91da1..9ee004c 100644
--- a/client/modules/Notifications.py
+++ b/client/modules/Notifications.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
import re
from facebook import *
diff --git a/client/modules/Time.py b/client/modules/Time.py
index 2fe8a10..90ffdf9 100644
--- a/client/modules/Time.py
+++ b/client/modules/Time.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
import datetime
import re
from app_utils import getTimezone
diff --git a/client/modules/Unclear.py b/client/modules/Unclear.py
index 23ab2ed..3900300 100644
--- a/client/modules/Unclear.py
+++ b/client/modules/Unclear.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
from sys import maxint
import random
diff --git a/client/modules/Weather.py b/client/modules/Weather.py
index ad1ac29..5922d33 100644
--- a/client/modules/Weather.py
+++ b/client/modules/Weather.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
import re
import datetime
import feedparser
diff --git a/client/modules/app_utils.py b/client/modules/app_utils.py
index 68cce38..cea6881 100644
--- a/client/modules/app_utils.py
+++ b/client/modules/app_utils.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
import smtplib
from email.MIMEText import MIMEText
import urllib2