]> git.proxmox.com Git - pve-common.git/blobdiff - src/PVE/CalendarEvent.pm
switch to using Proxmox::RS::CalendarEvent
[pve-common.git] / src / PVE / CalendarEvent.pm
index e2bf53ad5b2d1561a8f6e118c3c0238e0140b071..2ca5df1eb643781a585b2a262707eb14a1366243 100644 (file)
@@ -6,7 +6,7 @@ use Data::Dumper;
 use Time::Local;
 use PVE::JSONSchema;
 use PVE::Tools qw(trim);
 use Time::Local;
 use PVE::JSONSchema;
 use PVE::Tools qw(trim);
-use PVE::RS::CalendarEvent;
+use Proxmox::RS::CalendarEvent;
 
 # Note: This class implements a parser/utils for systemd like calendar exents
 # Date specification is currently not implemented
 
 # Note: This class implements a parser/utils for systemd like calendar exents
 # Date specification is currently not implemented
@@ -44,7 +44,7 @@ sub parse_calendar_event {
        die "unable to parse calendar event - event is empty\n";
     }
 
        die "unable to parse calendar event - event is empty\n";
     }
 
-    return PVE::RS::CalendarEvent->new($event);
+    return Proxmox::RS::CalendarEvent->new($event);
 }
 
 sub compute_next_event {
 }
 
 sub compute_next_event {