Skip to content

Commit

Permalink
Merge pull request #10 from throughnothing/cleanup
Browse files Browse the repository at this point in the history
Cleanup warnings and Hacking section in README
  • Loading branch information
ironcamel committed Aug 3, 2011
2 parents 3d3a3cd + d22bf11 commit 505444d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Expand Up @@ -83,9 +83,10 @@ __Optional ~/.vimrc Variables:__
* let g:vimchat\_showPresenceNotification = notification if buddy changed status, comma-separated list of states, default "" * let g:vimchat\_showPresenceNotification = notification if buddy changed status, comma-separated list of states, default ""


# Hacking # Hacking
Keep all lines to 80 characters wide or less
All python code should follow pep8 guidelines * Keep all lines to 80 characters wide or less
All new features should update documentation in the README * All python code should follow pep8 guidelines
* All new features should update documentation in the README




# Contributors # Contributors
Expand Down
5 changes: 3 additions & 2 deletions plugin/vimchat.vim
Expand Up @@ -33,6 +33,9 @@


python <<EOF python <<EOF
try: try:
import warnings
warnings.filterwarnings('ignore', category=DeprecationWarning)

from collections import defaultdict from collections import defaultdict
from ConfigParser import RawConfigParser from ConfigParser import RawConfigParser
import os import os
Expand All @@ -42,10 +45,8 @@ try:
import threading import threading
import time import time
import vim import vim
import warnings
import xmpp import xmpp


warnings.filterwarnings('ignore', category=DeprecationWarning)


try: try:
import simplejson as json import simplejson as json
Expand Down

0 comments on commit 505444d

Please sign in to comment.