소스 검색

sum: refactor

Fabian Peter Hammerle 8 년 전
부모
커밋
b90accd2d4
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      finoex/__init__.py

+ 3 - 3
finoex/__init__.py

@@ -95,10 +95,10 @@ class Sum(ioex.calcex.Figure):
     currency_regex = r"[^\d\s-]+"
 
     sum_regex = [
-        r'^\$?(?P<value>{}) (?P<curr>{})$'.format(
+        r'^\$?(?P<value>{}) (?P<currency>{})$'.format(
             value_regex, currency_regex,
         ),
-        r'^(?P<curr>{}) ?(?P<value>{})$'.format(
+        r'^(?P<currency>{}) ?(?P<value>{})$'.format(
             currency_regex, value_regex,
         ),
     ]
@@ -116,7 +116,7 @@ class Sum(ioex.calcex.Figure):
         attr = match.groupdict()
         return Sum(
             value=locale.atof(attr['value']),
-            currency=attr['curr'],
+            currency=attr['currency'],
         )