diff --git a/bindings/python/src/alert.cpp b/bindings/python/src/alert.cpp index 21d7c6f17..8a74cbf46 100644 --- a/bindings/python/src/alert.cpp +++ b/bindings/python/src/alert.cpp @@ -104,7 +104,7 @@ void bind_alert() class_, noncopyable>( "tracker_announce_alert", no_init ) - .def_readonly("event", &tracker_reply_alert::event) + .def_readonly("event", &tracker_announce_alert::event) ; class_, noncopyable>( @@ -162,7 +162,7 @@ void bind_alert() class_, noncopyable>( "storage_moved_alert", no_init ) - .def_readonly("path", &storaged_moved_alert::path) + .def_readonly("path", &storage_moved_alert::path) ; class_, noncopyable>( @@ -317,7 +317,7 @@ void bind_alert() class_, noncopyable>( "dht_announce_alert", no_init ) - .def_readonly("ip" &dht_announce_alert::ip) + .def_readonly("ip", &dht_announce_alert::ip) .def_readonly("port", &dht_announce_alert::port) .def_readonly("info_hash", &dht_announce_alert::info_hash) ;