diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-09-10 15:42:47 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-09-10 18:00:16 -0400 |
| commit | 6357df0b1f0e3fd51162a040e69636fb7567f039 (patch) | |
| tree | e41c33094c8ea0661e89872fef25908a0b095347 /client/modules | |
| parent | 2164883af62ee94a5b178f12684086885c2ea744 (diff) | |
| download | jasper-client-6357df0b1f0e3fd51162a040e69636fb7567f039.tar.gz jasper-client-6357df0b1f0e3fd51162a040e69636fb7567f039.zip | |
Remove Shebangs from modules not meant to be executed directly
See https://github.com/jasperproject/jasper-client/pull/154#issuecomment-54882839 for more info.
Diffstat (limited to 'client/modules')
| -rw-r--r-- | client/modules/Birthday.py | 1 | ||||
| -rw-r--r-- | client/modules/Gmail.py | 1 | ||||
| -rw-r--r-- | client/modules/HN.py | 1 | ||||
| -rw-r--r-- | client/modules/Joke.py | 1 | ||||
| -rw-r--r-- | client/modules/Life.py | 1 | ||||
| -rw-r--r-- | client/modules/News.py | 1 | ||||
| -rw-r--r-- | client/modules/Notifications.py | 1 | ||||
| -rw-r--r-- | client/modules/Time.py | 1 | ||||
| -rw-r--r-- | client/modules/Unclear.py | 1 | ||||
| -rw-r--r-- | client/modules/Weather.py | 1 | ||||
| -rw-r--r-- | client/modules/app_utils.py | 1 |
11 files changed, 0 insertions, 11 deletions
diff --git a/client/modules/Birthday.py b/client/modules/Birthday.py index 35dec59..b484a4f 100644 --- a/client/modules/Birthday.py +++ b/client/modules/Birthday.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # -*- coding: utf-8-*- import datetime import re diff --git a/client/modules/Gmail.py b/client/modules/Gmail.py index 195f0fb..dfb6854 100644 --- a/client/modules/Gmail.py +++ b/client/modules/Gmail.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # -*- coding: utf-8-*- import imaplib import email diff --git a/client/modules/HN.py b/client/modules/HN.py index 998625d..ec7ecef 100644 --- a/client/modules/HN.py +++ b/client/modules/HN.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # -*- coding: utf-8-*- import urllib2 import re diff --git a/client/modules/Joke.py b/client/modules/Joke.py index 6d78e7a..802047c 100644 --- a/client/modules/Joke.py +++ b/client/modules/Joke.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # -*- coding: utf-8-*- import random import re diff --git a/client/modules/Life.py b/client/modules/Life.py index 259d976..4cafd75 100644 --- a/client/modules/Life.py +++ b/client/modules/Life.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # -*- coding: utf-8-*- import random import re diff --git a/client/modules/News.py b/client/modules/News.py index 56ea000..d80b791 100644 --- a/client/modules/News.py +++ b/client/modules/News.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # -*- coding: utf-8-*- import feedparser import app_utils diff --git a/client/modules/Notifications.py b/client/modules/Notifications.py index 2b4cb88..9ee004c 100644 --- a/client/modules/Notifications.py +++ b/client/modules/Notifications.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # -*- coding: utf-8-*- import re from facebook import * diff --git a/client/modules/Time.py b/client/modules/Time.py index ea2c35a..90ffdf9 100644 --- a/client/modules/Time.py +++ b/client/modules/Time.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # -*- coding: utf-8-*- import datetime import re diff --git a/client/modules/Unclear.py b/client/modules/Unclear.py index 6af6082..3900300 100644 --- a/client/modules/Unclear.py +++ b/client/modules/Unclear.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # -*- coding: utf-8-*- from sys import maxint import random diff --git a/client/modules/Weather.py b/client/modules/Weather.py index 446652a..5922d33 100644 --- a/client/modules/Weather.py +++ b/client/modules/Weather.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # -*- coding: utf-8-*- import re import datetime diff --git a/client/modules/app_utils.py b/client/modules/app_utils.py index 5ac7488..cea6881 100644 --- a/client/modules/app_utils.py +++ b/client/modules/app_utils.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python2 # -*- coding: utf-8-*- import smtplib from email.MIMEText import MIMEText |
