Skip to content

Commit 593601d

Browse files
author
Tim Lauridsen
committed
merge dnfdaemon-0.3.14 release
2 parents 8d29c4f + c4cdcf5 commit 593601d

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

ChangeLog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
2016-04-29 Tim Lauridsen <timlau@fedoraproject.org>
2+
3+
* dnfdaemon.spec: bumped version to 0.3.14
4+
5+
2016-04-29 Tim Lauridsen <timlau@fedoraproject.org>
6+
7+
* python/dnfdaemon/client/__init__.py: fallback to use
8+
GObject.G_MAXINT
9+
10+
2016-04-29 Tim Lauridsen <timlau@fedoraproject.org>
11+
12+
Merge branch 'release-0.3.13' into develop
13+
14+
2016-04-29 Tim Lauridsen <timlau@fedoraproject.org>
15+
16+
* ChangeLog: updated ChangeLog
17+
118
2016-04-29 Tim Lauridsen <timlau@fedoraproject.org>
219

320
* dnfdaemon.spec: bumped version to 0.3.13

dnfdaemon.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%global dnf_version 1.1.0
33

44
Name: dnfdaemon
5-
Version: 0.3.13
5+
Version: 0.3.14
66
Release: 1%{?dist}
77
Summary: DBus daemon for dnf package actions
88
License: GPLv2+
@@ -99,6 +99,9 @@ fi
9999
%{python3_sitelib}/%{name}/client
100100

101101
%changelog
102+
* Fri Apr 29 2016 Tim Lauridsen <timlau@fedoraproject.org> 0.3.14-1
103+
- bumped release
104+
102105
* Fri Apr 29 2016 Tim Lauridsen <timlau@fedoraproject.org> 0.3.13-1
103106
- bumped release
104107

python/dnfdaemon/client/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def on_RepoMetaDataProgress(self, name, frac):
108108

109109
logger = logging.getLogger("dnfdaemon.client")
110110

111-
from gi.repository import Gio, GLib
111+
from gi.repository import Gio, GLib, GObject
112112

113113
ORG = 'org.baseurl.DnfSystem'
114114
INTERFACE = ORG
@@ -288,7 +288,7 @@ def _run_dbus_async(self, cmd, *args):
288288
func = getattr(self.daemon, cmd)
289289
# timeout = infinite
290290
func(*args, result_handler=self._return_handler,
291-
user_data=data, timeout=GLib.G_MAXINT)
291+
user_data=data, timeout=GObject.G_MAXINT)
292292
data['main_loop'].run()
293293
result = self._get_result(data)
294294
return result

0 commit comments

Comments
 (0)