Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjs <js-gajim@webkeks.org>2008-07-29 23:49:31 +0400
committerjs <js-gajim@webkeks.org>2008-07-29 23:49:31 +0400
commit8605cd3f383f25b01294ed50f89d965f25fb4fd1 (patch)
treea86e5c6e3aef733d68824c1ba18ebc259d56ed75 /src/osx/growl
parent993d0d8609ee30ebbf5162bb6d1fdcaf2c14729f (diff)
For historical reasons, we have a tab width of 3. This is strange, but
we have that in all files. To at least lesser the confusion a bit, add vim tags for that. Additionally, fix wrong #! in a few files.
Diffstat (limited to 'src/osx/growl')
-rw-r--r--src/osx/growl/Growl.py2
-rw-r--r--src/osx/growl/__init__.py2
-rw-r--r--src/osx/growl/setup.py4
3 files changed, 7 insertions, 1 deletions
diff --git a/src/osx/growl/Growl.py b/src/osx/growl/Growl.py
index 15e037673..4a9e03f91 100644
--- a/src/osx/growl/Growl.py
+++ b/src/osx/growl/Growl.py
@@ -245,3 +245,5 @@ class GrowlNotifier(object):
def notifyCB(self, userdata):
print "Got notify in pyland", userdata
+
+# vim: se ts=3: \ No newline at end of file
diff --git a/src/osx/growl/__init__.py b/src/osx/growl/__init__.py
index 2f3c16e5d..48a685022 100644
--- a/src/osx/growl/__init__.py
+++ b/src/osx/growl/__init__.py
@@ -1 +1,3 @@
# No-op file that just helps python with the growl module directory.
+
+# vim: se ts=3: \ No newline at end of file
diff --git a/src/osx/growl/setup.py b/src/osx/growl/setup.py
index 5a7235dee..80e56b14b 100644
--- a/src/osx/growl/setup.py
+++ b/src/osx/growl/setup.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
from distutils.core import setup, Extension
import sys
@@ -23,3 +23,5 @@ setup(name="py-Growl",
py_modules=["Growl"],
ext_modules = modules )
+
+# vim: se ts=3: