Changeset 2535

Show
Ignore:
Timestamp:
10/03/05 17:00:20 (19 years ago)
Author:
jerome
Message:

Small fix for data dumper. There's still a bug with --sum.
Severity : high

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/dumper.py

    r2512 r2535  
    9191                     
    9292        format = options["format"] 
    93         if (format not in self.validformats.keys()) \ 
    94               or ((format == "cups") and ((datatype != "history") or options["sum"])) : 
     93        if format not in self.validformats.keys() : 
    9594            raise PyKotaCommandLineError, _("Invalid modifier [%s] for --format command line option, see help.") % format 
    9695