moved a line back to where it was

results in a net smaller diff
This commit is contained in:
BlueShanks
2018-02-16 00:46:51 +10:00
parent 5cd21da7b1
commit c5c673e360
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -118,3 +118,4 @@ ENV/
.idea
eos.iml
gitversion
*.swp

View File

@@ -41,6 +41,8 @@ from gui.utils.clipboard import toClipboard, fromClipboard
import roman
import re
pyfalog = Logger(__name__)
def arabicOrRomanToInt(s):
m = re.match(r'\d+$', s)
if m:
@@ -49,8 +51,6 @@ def arabicOrRomanToInt(s):
i = roman.fromRoman(s)
return i
pyfalog = Logger(__name__)
class CharacterTextValidor(BaseValidator):
def __init__(self):
BaseValidator.__init__(self)