changeset 4:23be092e6099

make this executable
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 17 Jun 2011 10:40:51 -0700
parents 00266c7a7c3c
children 6b99523536ee
files urlmatch.py
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/urlmatch.py	Fri Jun 17 10:39:37 2011 -0700
+++ b/urlmatch.py	Fri Jun 17 10:40:51 2011 -0700
@@ -1,6 +1,9 @@
+#!/usr/bin/env python
+
 import urlparse
 
 class UrlMatcher(object):
+    """match urls"""
 
     def __init__(self, *urls):
         match_order=('domain', 'scheme', 'path')