summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuthu Subramanian K <sumuthu@novell.com>2010-11-09 22:06:43 +0530
committerMuthu Subramanian K <sumuthu@novell.com>2010-11-09 22:06:43 +0530
commit41fb8199033cdb83a065e6f64897ef769e3eeb80 (patch)
treefa39e84f78caede8165c7df27674f82436934341
parentb6bef35291ee407841936a59097120074f37c489 (diff)
missing file.close()
-rwxr-xr-xhelpcontent2/to-wiki/wikiconv2.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/helpcontent2/to-wiki/wikiconv2.py b/helpcontent2/to-wiki/wikiconv2.py
index a26299a296..167479a6dc 100755
--- a/helpcontent2/to-wiki/wikiconv2.py
+++ b/helpcontent2/to-wiki/wikiconv2.py
@@ -207,6 +207,7 @@ class cbookmark:
file = open("bookmarks.csv","a")
for i in cbookmark.bookmarks_list:
file.write(i.encode('ascii','replace')+"\n")
+ file.close()
class cimage:
def __init__(self, attrs, parent):