diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-09-13 01:47:02 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-09-13 01:47:02 (GMT) |
commit | dda0ce7285b86273821d8c61ef6179a0dd6e39f1 (patch) | |
tree | e494bb17534870cd5c9347e706358651e73e8a69 /Demo | |
parent | 2a9b9cbea08c7c22a328926b0e0719fb197743a0 (diff) | |
download | cpython-dda0ce7285b86273821d8c61ef6179a0dd6e39f1.zip cpython-dda0ce7285b86273821d8c61ef6179a0dd6e39f1.tar.gz cpython-dda0ce7285b86273821d8c61ef6179a0dd6e39f1.tar.bz2 |
Remove semicolon
Diffstat (limited to 'Demo')
-rwxr-xr-x | Demo/scripts/newslist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/scripts/newslist.py b/Demo/scripts/newslist.py index a631214..1dc8af2 100755 --- a/Demo/scripts/newslist.py +++ b/Demo/scripts/newslist.py @@ -321,7 +321,7 @@ def main(): tree={} # Check that the output directory exists - checkopdir(pagedir); + checkopdir(pagedir) try: print 'Connecting to '+newshost+'...' |