Browse Source

Less fiddly ExportException

pull/1/head
Adam Johnson 11 years ago
parent
commit
f9d554d391
  1. 5
      korman/exporter.py

5
korman/exporter.py

@ -19,9 +19,8 @@ from PyHSPlasma import *
class ExportError(Exception):
def __init__(self, value="Undefined Export Error"):
self.value = value
def __str__(self):
return self.value
super(Exception, self).__init__(value)
class Exporter:
def __init__(self, op):

Loading…
Cancel
Save