diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-20 23:17:58 +0200 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-08-16 22:34:57 -0400 |
commit | 7027488b032734eda664e43e6f4a1a9d9c813776 (patch) | |
tree | 29793e88baa39ae1062bc9064f302ed5cba2f547 /src/redshift-gtk/statusicon.py | |
parent | Merge pull request #92 from jonls/fix-91-makerule (diff) | |
download | redshift-ng-7027488b032734eda664e43e6f4a1a9d9c813776.tar.gz redshift-ng-7027488b032734eda664e43e6f4a1a9d9c813776.tar.bz2 redshift-ng-7027488b032734eda664e43e6f4a1a9d9c813776.tar.xz |
Fix #90: Print N/S and E/W in the location
Diffstat (limited to 'src/redshift-gtk/statusicon.py')
-rw-r--r-- | src/redshift-gtk/statusicon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redshift-gtk/statusicon.py b/src/redshift-gtk/statusicon.py index 2efbc07..3e66649 100644 --- a/src/redshift-gtk/statusicon.py +++ b/src/redshift-gtk/statusicon.py @@ -296,7 +296,7 @@ class RedshiftStatusIcon(object): elif key == 'Period': self.change_period(value) elif key == 'Location': - self.change_location(tuple(float(x) for x in value.split(', '))) + self.change_location(value.split(', ')) def child_stdout_line_cb(self, line): if line: |