# HG changeset patch # User Marco Filippi iz3gme.marco@gmail.com # Date 1413383507 -7200 # mer ott 15 16:31:47 2014 +0200 # Node ID 2a5e07d1639023fec7474624eca3f6e1de4918cb # Parent 3438820c4164b9495ce13c9787d328c683025c71 [KG-UV8D] add missing get_prompts class method
fix #1969
diff --git a/chirp/kguv8d.py b/chirp/kguv8d.py --- a/chirp/kguv8d.py +++ b/chirp/kguv8d.py @@ -475,6 +475,14 @@ rf.memory_bounds = (1, 999) # 999 memories return rf
+ @classmethod + def get_prompts(cls): + rp = chirp_common.RadioPrompts() + rp.experimental = ('"This radio driver is currently under development. " + "There are no known issues with it, but you should " + "proceed with caution.") + return rp + def get_raw_memory(self, number): return repr(self._memobj.memory[number])