witten
/
luminotes
Archived
1
0
Fork 0

Fixing broken parameter parsing. Should really generalize this and maybe do real parsing.

This commit is contained in:
Dan Helfman 2008-08-18 18:05:20 -07:00
parent 9d5840e052
commit 58cf113f71
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ def main( args ):
if args and "-d" in args:
from config import Development
settings = Development.settings
if args and "-l" in args:
elif args and "-l" in args:
from config import Desktop
settings = Desktop.settings
else:

View File

@ -86,7 +86,7 @@ def main( args = None ):
if args and "-d" in args:
from config import Development
settings = Development.settings
if args and "-l" in args:
elif args and "-l" in args:
from config import Desktop
settings = Desktop.settings
else:

View File

@ -80,7 +80,7 @@ def main( args ):
if args and "-d" in args:
from config import Development
settings = Development.settings
if args and "-l" in args:
elif args and "-l" in args:
from config import Desktop
settings = Desktop.settings
else: