Merge lp:~thisfred/desktopcouch/fix-linux-detection into lp:desktopcouch

Proposed by Eric Casteleijn
Status: Merged
Approved by: dobey
Approved revision: 278
Merged at revision: 277
Proposed branch: lp:~thisfred/desktopcouch/fix-linux-detection
Merge into: lp:desktopcouch
Diff against target: 12 lines (+1/-1)
1 file modified
desktopcouch/application/platform/linux/tests/test_keyring.py (+1/-1)
To merge this branch: bzr merge lp:~thisfred/desktopcouch/fix-linux-detection
Reviewer Review Type Date Requested Status
dobey (community) Approve
Review via email: mp+66191@code.launchpad.net

Commit message

* Fixes linux detection (LP: #803062)

Description of the change

* Fixes linux detection (LP: #803062)

To post a comment you must log in.
Revision history for this message
dobey (dobey) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'desktopcouch/application/platform/linux/tests/test_keyring.py'
--- desktopcouch/application/platform/linux/tests/test_keyring.py 2011-01-04 20:29:38 +0000
+++ desktopcouch/application/platform/linux/tests/test_keyring.py 2011-06-28 17:35:56 +0000
@@ -30,7 +30,7 @@
30try:30try:
31 import gnomekeyring31 import gnomekeyring
32except ImportError, e:32except ImportError, e:
33 if sys.platform != 'linux2':33 if not sys.platform.startswith('linux'):
34 gnomekeyring = None34 gnomekeyring = None
35 else:35 else:
36 raise e36 raise e

Subscribers

People subscribed via source and target branches