diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2013-08-06 15:21:44 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2013-08-06 15:21:44 -0500 |
commit | df2bb3084af551770e9cd3f3e9b4cf59c439041b (patch) | |
tree | ea38ba9992748512afca51d16a4ea21511f334f0 /src | |
parent | a5c2cb14eed8e18dc56cda9034a80c72e7adbdfe (diff) | |
download | ayatana-indicator-bluetooth-df2bb3084af551770e9cd3f3e9b4cf59c439041b.tar.gz ayatana-indicator-bluetooth-df2bb3084af551770e9cd3f3e9b4cf59c439041b.tar.bz2 ayatana-indicator-bluetooth-df2bb3084af551770e9cd3f3e9b4cf59c439041b.zip |
templated strings need to begin with a '@'
Diffstat (limited to 'src')
-rw-r--r-- | src/desktop.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/desktop.vala b/src/desktop.vala index 8f4a9c8..e4e7d04 100644 --- a/src/desktop.vala +++ b/src/desktop.vala @@ -246,7 +246,7 @@ class Desktop: Profile try { AppInfo.launch_default_for_uri (uri, null); } catch (Error e) { - warning ("unable to launch '$uri': $(e.message)"); + warning (@"unable to launch '$uri': $(e.message)"); } }); }); |