~ubuntu-branches/ubuntu/trusty/ubuntuone-client/trusty-proposed

« back to all changes in this revision

Viewing changes to ubuntuone/platform/__init__.py

  • Committer: Package Import Robot
  • Author(s): Rodney Dawes
  • Date: 2012-10-03 11:07:27 UTC
  • mfrom: (1.1.75)
  • Revision ID: package-import@ubuntu.com-20121003110727-twy7j76gz07k8pj0
Tags: 4.0.0-0ubuntu1
* New upstream release.
  - Clicking U1 icon in messaging menu doesn't work. (LP: #1059571)
  - Opening Ubuntu One from sync indicator menu doesn't work. (LP: #1058334)
  - Excessive CPU usage with sync menu integration. (LP: #1052922)
  - Re-order transfers in sync menu to be more useful. (LP: #1052956)
  - Don't fail when sync menu is not available. (LP: #1053775)
  - Fix missing icon in dash and alt+tab. (LP: #1053519)
* debian/patches:
  - Remove patches included in new upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
from dirspec.utils import user_home
35
35
 
36
 
# very hackish way to avoid "import *" to satisfy pyflakes
37
 
# and to avoid import ubuntuone.platform.X as source (it wont work)
38
 
 
 
36
# define a platform string separate from sys.platform to be sent to
 
37
# the server for metrics in ActionQueue.authenticate().
39
38
if sys.platform == "win32":
40
39
    platform = "win32"
 
40
elif sys.platform == "darwin":
 
41
    platform = "darwin"
41
42
else:
42
43
    platform = "linux"
43
44