diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-01-31 11:48:14 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-01-31 11:48:14 -0800 |
commit | ae98c71f809d0f3a2826ba8c3030b5fcf89fcfcc (patch) | |
tree | 44a176f74f2b8427652b6130e98453dea2c8740d | |
parent | 742fd27193b9816af1717f239f0d55dd0b6291de (diff) | |
parent | e50c164d1d56ceb159969b8684ea000f3807f784 (diff) |
Merge branch 'FREESIDE_4_BRANCH' of git.freeside.biz:/home/git/freeside into FREESIDE_4_BRANCH
-rw-r--r-- | FS/FS/cust_main.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 74b5c51d6..750596909 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -5847,7 +5847,7 @@ sub queueable_upgrade { local($import) = 1;#prevent automatic geocoding (need its own variable?) my $error = $record->replace; - die $error if $error; + die "Error replacing $table ".$record->get($record->primary_key).": $error" if $error; } } |