aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-x[-rw-r--r--]config-builder.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/config-builder.py b/config-builder.py
index 7b388b6..da8bba4 100644..100755
--- a/config-builder.py
+++ b/config-builder.py
@@ -1,3 +1,5 @@
+#!/usr/bin/env python
+#
# This simple script can be used to create package list
# Copyright (c) 2011 Fabian Affolter <fabian@affolter-engineering.ch>
#
@@ -26,7 +28,7 @@ from optparse import OptionParser
from BeautifulSoup import BeautifulSoup
def get_pkg(url):
- """Retrieve the data from the website."""
+ """Retrieve the package names from a mediawiki page."""
page = urllib2.urlopen(url)
soup = BeautifulSoup(page)
completeList = []