summaryrefslogtreecommitdiffstats
path: root/tupkg/server
diff options
context:
space:
mode:
authorjchu <jchu>2004-09-03 20:30:06 +0000
committerjchu <jchu>2004-09-03 20:30:06 +0000
commit47b7a53460953650eeadb2140da38095cd426628 (patch)
treef9197504fa16560ef33ef42d9f94e84da552363b /tupkg/server
parentf841dbcf1ba07c841990186341c04a0c31da1cd5 (diff)
downloadaurweb-47b7a53460953650eeadb2140da38095cd426628.tar.xz
a little bit of tweaking
Diffstat (limited to 'tupkg/server')
-rwxr-xr-xtupkg/server/tupkgs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tupkg/server/tupkgs b/tupkg/server/tupkgs
index 63abaea..1aba794 100755
--- a/tupkg/server/tupkgs
+++ b/tupkg/server/tupkgs
@@ -197,7 +197,6 @@ def usage(name):
print "usage: " + name + " [options]"
print "options:"
print " -c, --config Specify an alternate config file (default " + CONFIGFILE + ")"
- sys.exit(2)
def getDefaultConfig():
confdict = {}
@@ -217,6 +216,7 @@ def main(argv=None):
optlist, args = getopt.getopt(argv[1:], "c:", ["config="])
except getopt.GetoptError:
usage(argv[0])
+ return 1
conffile = CONFIGFILE
@@ -227,6 +227,7 @@ def main(argv=None):
if not os.path.isfile(conffile):
print "Error: cannot access config file ("+conffile+")"
usage(argv[0])
+ return 1
config.read(conffile)