Skip to content

Commit

Permalink
os.sep for cross os conformance
Browse files Browse the repository at this point in the history
  • Loading branch information
nagaozen committed Jun 6, 2010
1 parent 04fc5c1 commit c92750c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion autocomplete/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

import gedit
import json
import os
import os.path

class SettingsModel():
Expand All @@ -25,7 +26,7 @@ def __init__(self, caller):
self._caller = caller

self.source = "MIXED"
self.path = gedit.Plugin.get_data_dir(caller._plugin) + "/"
self.path = gedit.Plugin.get_data_dir(caller._plugin) + os.sep

self._persistenceService = PersistenceService(self)

Expand Down

0 comments on commit c92750c

Please sign in to comment.