Skip to content

Commit

Permalink
fix the cookies.txt whitespace staircase
Browse files Browse the repository at this point in the history
  • Loading branch information
bct committed Apr 3, 2012
1 parent 171cbe5 commit 391a7f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uzbl/plugins/cookies.py
Expand Up @@ -126,7 +126,7 @@ def delete_cookie(self, rkey, key):
for l in cookies: for l in cookies:
c = self.as_event(l.split('\t')) c = self.as_event(l.split('\t'))
if c is None or not match(key, c): if c is None or not match(key, c):
print(l, end=' ', file=f) print(l, end='', file=f)


xdg_data_home = os.environ.get('XDG_DATA_HOME', os.path.join(os.environ['HOME'], '.local/share')) xdg_data_home = os.environ.get('XDG_DATA_HOME', os.path.join(os.environ['HOME'], '.local/share'))
DefaultStore = TextStore(os.path.join(xdg_data_home, 'uzbl/cookies.txt')) DefaultStore = TextStore(os.path.join(xdg_data_home, 'uzbl/cookies.txt'))
Expand Down

0 comments on commit 391a7f3

Please sign in to comment.