summaryrefslogtreecommitdiff
path: root/exchange
diff options
context:
space:
mode:
Diffstat (limited to 'exchange')
-rw-r--r--exchange/__init__.py4
-rw-r--r--exchange/authenticators.py5
-rw-r--r--exchange/commands.py5
-rw-r--r--exchange/timezones.py5
4 files changed, 7 insertions, 12 deletions
diff --git a/exchange/__init__.py b/exchange/__init__.py
index 429946a..a2a78ec 100644
--- a/exchange/__init__.py
+++ b/exchange/__init__.py
@@ -1,12 +1,10 @@
1# -*- coding: utf-8 -*- 1# vim: set filencoding=utf8
2""" 2"""
3Exchange Server Handling Code 3Exchange Server Handling Code
4 4
5@author: Mike Crute (mcrute@gmail.com) 5@author: Mike Crute (mcrute@gmail.com)
6@organization: SoftGroup Interactive, Inc. 6@organization: SoftGroup Interactive, Inc.
7@date: April 26, 2009 7@date: April 26, 2009
8
9$Id$
10""" 8"""
11 9
12 10
diff --git a/exchange/authenticators.py b/exchange/authenticators.py
index 12fb309..bcc2e38 100644
--- a/exchange/authenticators.py
+++ b/exchange/authenticators.py
@@ -1,13 +1,12 @@
1# -*- coding: utf-8 -*- 1# vim: set filencoding=utf8
2""" 2"""
3Exchange Server Authenticators 3Exchange Server Authenticators
4 4
5@author: Mike Crute (mcrute@gmail.com) 5@author: Mike Crute (mcrute@gmail.com)
6@organization: SoftGroup Interactive, Inc. 6@organization: SoftGroup Interactive, Inc.
7@date: April 26, 2009 7@date: April 26, 2009
8
9$Id$
10""" 8"""
9
11import urllib 10import urllib
12 11
13from copy import copy 12from copy import copy
diff --git a/exchange/commands.py b/exchange/commands.py
index 40446e2..8198ca6 100644
--- a/exchange/commands.py
+++ b/exchange/commands.py
@@ -1,4 +1,4 @@
1# -*- coding: utf-8 -*- 1# vim: set filencoding=utf8
2""" 2"""
3Exchange Commands 3Exchange Commands
4 4
@@ -9,9 +9,8 @@ This is a set of classes that starts to define a set of classes for
9fetching data using Exchange's WebDAV API. This is still pretty 9fetching data using Exchange's WebDAV API. This is still pretty
10development code but it does the trick. Watch out, it doesn't consider 10development code but it does the trick. Watch out, it doesn't consider
11many corner cases. 11many corner cases.
12
13$Id$
14""" 12"""
13
15import xml.etree.cElementTree as etree 14import xml.etree.cElementTree as etree
16 15
17from httplib import HTTPSConnection 16from httplib import HTTPSConnection
diff --git a/exchange/timezones.py b/exchange/timezones.py
index eefbe8e..b570e7b 100644
--- a/exchange/timezones.py
+++ b/exchange/timezones.py
@@ -1,13 +1,12 @@
1# -*- coding: utf-8 -*- 1# vim: set filencoding=utf8
2""" 2"""
3Timezone Definitions 3Timezone Definitions
4 4
5@author: Mike Crute (mcrute@gmail.com) 5@author: Mike Crute (mcrute@gmail.com)
6@organization: SoftGroup Interactive, Inc. 6@organization: SoftGroup Interactive, Inc.
7@date: April 26, 2009 7@date: April 26, 2009
8
9$Id$
10""" 8"""
9
11from datetime import tzinfo, timedelta 10from datetime import tzinfo, timedelta
12 11
13 12