diff options
author | jeff <jeff> | 2010-04-05 12:25:18 +0000 |
---|---|---|
committer | jeff <jeff> | 2010-04-05 12:25:18 +0000 |
commit | ccc2cb1f5277995465bc0702e7c230a0648b26e7 (patch) | |
tree | ac9ffc2d8d33ddb4d46daa7d2f31c27e03616096 | |
parent | 9b43c7df599da8a0fd1502eb10b3367762ec9c75 (diff) |
fix noisy but harmless redeclaration
-rw-r--r-- | FS/FS/part_export/dashcs_e911.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_export/dashcs_e911.pm b/FS/FS/part_export/dashcs_e911.pm index a0c3a6d6a..320d0a67b 100644 --- a/FS/FS/part_export/dashcs_e911.pm +++ b/FS/FS/part_export/dashcs_e911.pm @@ -60,7 +60,7 @@ sub _export_insert { 'location' => $location, }; - my $error_or_ref = dash_command($opts, 'addLocation', $arg ); + $error_or_ref = dash_command($opts, 'addLocation', $arg ); return $error_or_ref unless ref($error_or_ref); my $id = $error_or_ref->get_Location->get_locationid; |